tests/check/gst/gststructure.c: Disable test that checks that white spaces are not...
authorTim-Philipp Müller <tim@centricular.net>
Thu, 25 Oct 2007 14:41:01 +0000 (14:41 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 25 Oct 2007 14:41:01 +0000 (14:41 +0000)
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.

ChangeLog
tests/check/gst/gststructure.c

index b9394d6a4fcfa36b7ecc077fbcf8f4e505c71e33..6489cb798daaadffce8950f95f5967767368c890 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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:
index bba379d40fda6c898179038d27aaf0017ae8fda8..4a644d6dd49960f03c9fa90b5132ab95652492b2 100644 (file)
@@ -127,8 +127,15 @@ GST_START_TEST (test_to_string)
   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);