tests/check/elements/playbin.c: Use /dev/zero instead of /dev/urandom to produce...
authorJan Schmidt <thaytan@mad.scientist.com>
Wed, 23 May 2007 15:54:28 +0000 (15:54 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Wed, 23 May 2007 15:54:28 +0000 (15:54 +0000)
Original commit message from CVS:
* tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
file. Avoids flukes where the input gets typefound to some valid but
useless type.

ChangeLog
tests/check/elements/playbin.c

index 3177407..400a828 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
+
+       * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
+       Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
+       file. Avoids flukes where the input gets typefound to some valid but
+       useless type.
+
 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
 
        * tests/check/Makefile.am:
index 9ae0e14..d9978bb 100644 (file)
@@ -106,10 +106,10 @@ DEFINE_TEST (test_suburi_error_unknowntype)
   g_object_set (playbin, "video-sink", fakesink, NULL);
 
   /* suburi file format unknown: playbin should just ignore the suburi and
-   * preroll normally (if /dev/urandom does not exist, this test should behave
+   * preroll normally (if /dev/zero does not exist, this test should behave
    * the same as test_suburi_error_invalidfile() */
   g_object_set (playbin, "uri", "redvideo://", NULL);
-  g_object_set (playbin, "suburi", "file:///dev/urandom", NULL);
+  g_object_set (playbin, "suburi", "file:///dev/zero", NULL);
   fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_READY),
       GST_STATE_CHANGE_SUCCESS);
   fail_unless_equals_int (gst_element_set_state (playbin, GST_STATE_PAUSED),