Original commit message from CVS:
* tests/check/gst/gststructure.c: (test_to_string):
Disable test that checks that white spaces are not allowed
in structure names or field names, since we need to
support that for now for backwards compatibility reasons.
+2007-10-25 Tim-Philipp Müller <tim at centricular dot net>
+
+ * tests/check/gst/gststructure.c: (test_to_string):
+ Disable test that checks that white spaces are not allowed
+ in structure names or field names, since we need to
+ support that for now for backwards compatibility reasons.
+
2007-10-24 Tim-Philipp Müller <tim at centricular dot net>
* docs/gst/gstreamer-sections.txt:
ASSERT_CRITICAL (st1 = gst_structure_new ("Foo\nwith-newline", NULL));
fail_unless (st1 == NULL);
+ /* FIXME 0.11: re-enable this */
+#if 0
ASSERT_CRITICAL (st1 = gst_structure_new ("Foo with whitespace", NULL));
fail_unless (st1 == NULL);
+#else
+ st1 = gst_structure_new ("Foo with whitespace is still allowed", NULL);
+ fail_unless (st1 != NULL);
+ gst_structure_free (st1);
+#endif
ASSERT_CRITICAL (st1 = gst_structure_new ("1st", NULL));
fail_unless (st1 == NULL);