summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-02-01 13:20:42 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-02-01 13:20:42 +0000
commitedc6803ed130ca67eeed36a22155030c3aff7767 (patch)
tree6bcc8dcfc593521f7c982806028192f12ceb13ce /testsuite
parent34d1219213563a43120bd2f54d30ceaaf54fc99e (diff)
testsuite/threads/: On Wim's request, split the test in three separately-compiled tests that each test a very specifi...
Original commit message from CVS: * testsuite/threads/Makefile.am: * testsuite/threads/threadi.c: (cb_data), (cb_play), (main): On Wim's request, split the test in three separately-compiled tests that each test a very specific bug. Two of them still fail, will create bugs for those. threadi.c indicates why they fail.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/threads/Makefile.am11
-rw-r--r--testsuite/threads/threadi.c115
2 files changed, 78 insertions, 48 deletions
diff --git a/testsuite/threads/Makefile.am b/testsuite/threads/Makefile.am
index 3d0f5c9e5..0ca822d92 100644
--- a/testsuite/threads/Makefile.am
+++ b/testsuite/threads/Makefile.am
@@ -1,11 +1,11 @@
include ../Rules
-tests_pass = thread1 thread2 thread3 thread4 thread5 threade threadf signal1 159852 threadg threadi
+tests_pass = thread1 thread2 thread3 thread4 thread5 threade threadf signal1 159852 threadg threadi-123775
tests_fail = 159566 signal2 signal3
# threadh
-tests_ignore = queue threadb threadc threadd staticrec
+tests_ignore = queue threadb threadc threadd staticrec threadi-nfy1 threadi-nfy2
thread1_SOURCES = thread.c
thread1_CFLAGS = -DTESTNUM=1 $(AM_CFLAGS)
@@ -24,3 +24,10 @@ signal2_SOURCES = signals.c
signal2_CFLAGS = -DTESTNUM=2 $(AM_CFLAGS)
signal3_SOURCES = signals.c
signal3_CFLAGS = -DTESTNUM=3 $(AM_CFLAGS)
+
+threadi_123775_SOURCES = threadi.c
+threadi_123775_CFLAGS = -DTESTNUM=123775 $(AM_CFLAGS)
+threadi_nfy1_SOURCES = threadi.c
+threadi_nfy1_CFLAGS = -DTESTNUM=999998 $(AM_CFLAGS)
+threadi_nfy2_SOURCES = threadi.c
+threadi_nfy2_CFLAGS = -DTESTNUM=999999 $(AM_CFLAGS)
diff --git a/testsuite/threads/threadi.c b/testsuite/threads/threadi.c
index e93510489..6fe8840b3 100644
--- a/testsuite/threads/threadi.c
+++ b/testsuite/threads/threadi.c
@@ -1,19 +1,24 @@
/*
- * Test two ways of going non-lineairly to PLAYING. Both tests have a thread
- * containing a fakesrc/sink and a containing thread.
+ * Test three ways of going non-lineairly to PLAYING. Both tests have a
+ * thread containing a fakesrc/sink.
*
- * Test 1 tests by adding fakesrc, putting thread to PLAYING, adding
- * fakesink, syncing state and see if it iterates.
- *
- * Test2 tests by adding fakesrc/fakesink, setting fakesrc to PLAYING
+ * Test1 tests by adding fakesrc/fakesink, setting fakesrc to PLAYING
* (which should increment the container state) and then synchronizing
- * state. This reflects bug #123775.
+ * state and see if the bin iterates. This reflects bug #123775.
+ *
+ * Test2 does the same, but emits EOS directly. This will (in case of
+ * race conditions) sometimes lead to a state-change before the previous
+ * one succeeded. This bug is not fixed yet (999998).
+ *
+ * Test3 tests by adding fakesrc, putting thread to PLAYING, adding
+ * fakesink, syncing state and see if it iterates. The group is sometimes
+ * activated before fakesink is added to the bin, which is a bug in opt
+ * and a race in core that is not fixed yet (999999).
*/
#include <gst/gst.h>
static GstElement *pipeline, *fakesrc, *fakesink;
-gboolean bug = FALSE;
static gboolean
cb_timeout (gpointer data)
@@ -34,6 +39,7 @@ cb_quit (gpointer data)
return FALSE;
}
+#if TESTNUM != 123775
static void
cb_eos (gpointer data)
{
@@ -41,6 +47,15 @@ cb_eos (gpointer data)
g_idle_add ((GSourceFunc) cb_quit, NULL);
}
+#else
+static void
+cb_data (gpointer data)
+{
+ g_print ("Received data\n");
+
+ g_idle_add ((GSourceFunc) cb_quit, NULL);
+}
+#endif
static void
cb_state (GstElement * element, GstElementState old_state,
@@ -54,18 +69,20 @@ cb_play (gpointer data)
{
GstElementStateReturn res;
- if (bug) {
- g_print ("Setting state\n");
- gst_element_set_state (fakesrc, GST_STATE_PLAYING);
- g_print ("Done\n");
- } else {
- gst_element_set_state (pipeline, GST_STATE_PLAYING);
- gst_bin_add (GST_BIN (pipeline), fakesink);
- }
- g_print ("Syncing state\n");
+#if TESTNUM != 999999
+ g_print ("Setting state on fakesrc\n");
+ gst_element_set_state (fakesrc, GST_STATE_PLAYING);
+ g_print ("Done\n");
+#else
+ g_print ("Setting state on pipeline w/o fakesink\n");
+ gst_element_set_state (pipeline, GST_STATE_PLAYING);
+ g_print ("Adding fakesink\n");
+ gst_bin_add (GST_BIN (pipeline), fakesink);
+ g_print ("Done\n");
+#endif
+ g_print ("Syncing state in pipeline\n");
res = gst_bin_sync_children_state (GST_BIN (data));
g_assert (res == GST_STATE_SUCCESS);
-
g_print ("Set to playing correctly: %d\n", GST_STATE (pipeline));
/* once */
@@ -75,37 +92,43 @@ cb_play (gpointer data)
gint
main (gint argc, gchar * argv[])
{
- gint n, id;
+ gint id;
gst_init (&argc, &argv);
- for (n = 0; n < 2; n++) {
- pipeline = gst_thread_new ("p");
- g_signal_connect (pipeline, "state-change", G_CALLBACK (cb_state), NULL);
- fakesrc = gst_element_factory_make ("fakesrc", "src");
- g_object_set (G_OBJECT (fakesrc), "num-buffers", 1, NULL);
- fakesink = gst_element_factory_make ("fakesink", "sink");
- if (bug) {
- gst_bin_add_many (GST_BIN (pipeline), fakesrc, fakesink, NULL);
- } else {
- gst_bin_add (GST_BIN (pipeline), fakesrc);
- }
- gst_element_link (fakesrc, fakesink);
- g_signal_connect (pipeline, "eos", G_CALLBACK (cb_eos), NULL);
- g_idle_add ((GSourceFunc) cb_play, pipeline);
-
- /* give 5 seconds */
- id = g_timeout_add (5000, (GSourceFunc) cb_timeout, NULL);
- g_print ("Enter mainloop\n");
- gst_main ();
- g_source_remove (id);
-
- gst_element_set_state (pipeline, GST_STATE_NULL);
- gst_object_unref (GST_OBJECT (pipeline));
-
- g_print ("Done with reproduce-bug-123775=%s\n", bug ? "true" : "false");
- bug = !bug;
- }
+ g_print ("Will do a test to see if bug %d is fixed\n", TESTNUM);
+
+ pipeline = gst_thread_new ("p");
+ g_signal_connect (pipeline, "state-change", G_CALLBACK (cb_state), NULL);
+ fakesrc = gst_element_factory_make ("fakesrc", "src");
+ fakesink = gst_element_factory_make ("fakesink", "sink");
+#if TESTNUM != 123775
+ g_object_set (G_OBJECT (fakesrc), "num-buffers", 0, NULL);
+ g_signal_connect (pipeline, "eos", G_CALLBACK (cb_eos), NULL);
+#else
+ g_object_set (G_OBJECT (fakesink), "signal-handoffs", TRUE, NULL);
+ g_signal_connect (fakesink, "handoff", G_CALLBACK (cb_data), NULL);
+#endif
+
+#if TESTNUM != 999999
+ gst_bin_add_many (GST_BIN (pipeline), fakesrc, fakesink, NULL);
+#else
+ gst_bin_add (GST_BIN (pipeline), fakesrc);
+#endif
+
+ gst_element_link (fakesrc, fakesink);
+ g_idle_add ((GSourceFunc) cb_play, pipeline);
+
+ /* give 5 seconds */
+ id = g_timeout_add (5000, (GSourceFunc) cb_timeout, NULL);
+ g_print ("Enter mainloop\n");
+ gst_main ();
+ g_source_remove (id);
+
+ gst_element_set_state (pipeline, GST_STATE_NULL);
+ gst_object_unref (GST_OBJECT (pipeline));
+
+ g_print ("Done with test to show bug %d, fixed correctly\n", TESTNUM);
return 0;
}