mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
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.
This commit is contained in:
parent
34d1219213
commit
edc6803ed1
5 changed files with 158 additions and 90 deletions
|
@ -1,3 +1,11 @@
|
|||
2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* 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.
|
||||
|
||||
2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/schedulers/gstoptimalscheduler.c:
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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");
|
||||
#if TESTNUM != 999999
|
||||
g_print ("Setting state on fakesrc\n");
|
||||
gst_element_set_state (fakesrc, GST_STATE_PLAYING);
|
||||
g_print ("Done\n");
|
||||
} else {
|
||||
#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 ("Syncing state\n");
|
||||
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,23 +92,31 @@ 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++) {
|
||||
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");
|
||||
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);
|
||||
#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 */
|
||||
|
@ -103,9 +128,7 @@ main (gint argc, gchar * argv[])
|
|||
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 ("Done with test to show bug %d, fixed correctly\n", TESTNUM);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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");
|
||||
#if TESTNUM != 999999
|
||||
g_print ("Setting state on fakesrc\n");
|
||||
gst_element_set_state (fakesrc, GST_STATE_PLAYING);
|
||||
g_print ("Done\n");
|
||||
} else {
|
||||
#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 ("Syncing state\n");
|
||||
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,23 +92,31 @@ 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++) {
|
||||
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");
|
||||
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);
|
||||
#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 */
|
||||
|
@ -103,9 +128,7 @@ main (gint argc, gchar * argv[])
|
|||
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 ("Done with test to show bug %d, fixed correctly\n", TESTNUM);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue