2004-05-18 21:18:43 +00:00
|
|
|
include ../Rules
|
|
|
|
|
2004-05-19 17:47:55 +00:00
|
|
|
tests_pass = \
|
|
|
|
unlink_src unlink_sink \
|
|
|
|
relink_src relink_sink \
|
2004-06-20 19:42:58 +00:00
|
|
|
unref_src unref_sink \
|
Implemented group splitting and rechaining.
Original commit message from CVS:
* gst/schedulers/gstoptimalscheduler.c:
(chain_recursively_migrate_group), (create_group),
(schedule_group), (gst_opt_scheduler_pad_link),
(group_elements_set_visited), (element_get_reachables_func),
(element_get_reachables), (group_can_reach_group), (debug_element),
(rechain_group), (group_migrate_connected),
(gst_opt_scheduler_pad_unlink):
* testsuite/schedulers/Makefile.am:
Implemented group splitting and rechaining.
Fixes 143777 and 143777-2 in the testsuite.
2004-07-08 15:24:20 +00:00
|
|
|
143777 143777-2
|
2004-05-19 17:47:55 +00:00
|
|
|
|
|
|
|
# don't enable this one unless it actually works.
|
|
|
|
# useless_iteration
|
2004-05-18 21:18:43 +00:00
|
|
|
|
Implemented group splitting and rechaining.
Original commit message from CVS:
* gst/schedulers/gstoptimalscheduler.c:
(chain_recursively_migrate_group), (create_group),
(schedule_group), (gst_opt_scheduler_pad_link),
(group_elements_set_visited), (element_get_reachables_func),
(element_get_reachables), (group_can_reach_group), (debug_element),
(rechain_group), (group_migrate_connected),
(gst_opt_scheduler_pad_unlink):
* testsuite/schedulers/Makefile.am:
Implemented group splitting and rechaining.
Fixes 143777 and 143777-2 in the testsuite.
2004-07-08 15:24:20 +00:00
|
|
|
tests_fail =
|
2004-05-18 21:18:43 +00:00
|
|
|
tests_ignore =
|
|
|
|
|
|
|
|
unlink_src_SOURCES = unlink.c
|
|
|
|
unlink_src_CFLAGS = $(AM_CFLAGS) -DELEMENT=src
|
|
|
|
unlink_sink_SOURCES = unlink.c
|
|
|
|
unlink_sink_CFLAGS = $(AM_CFLAGS) -DELEMENT=sink
|
|
|
|
relink_src_SOURCES = relink.c
|
|
|
|
relink_src_CFLAGS = $(AM_CFLAGS) -DELEMENT=src -DOTHER_ELEMENT=sink
|
|
|
|
relink_sink_SOURCES = relink.c
|
|
|
|
relink_sink_CFLAGS = $(AM_CFLAGS) -DELEMENT=sink -DOTHER_ELEMENT=src
|
|
|
|
unref_src_SOURCES = unref.c
|
|
|
|
unref_src_CFLAGS = $(AM_CFLAGS) -DELEMENT=src
|
|
|
|
unref_sink_SOURCES = unref.c
|
|
|
|
unref_sink_CFLAGS = $(AM_CFLAGS) -DELEMENT=sink
|