tests/check/elements/volume.c: disable test until #343196 gets resolved

Original commit message from CVS:
* tests/check/elements/volume.c: (volume_suite):
disable test until #343196 gets resolved
This commit is contained in:
Stefan Kost 2006-05-28 19:56:25 +00:00
parent 213de86586
commit 8424d24728
2 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-05-28 Stefan Kost <ensonic@users.sf.net>
* tests/check/elements/volume.c: (volume_suite):
disable test until #343196 gets resolved
2006-05-28 Stefan Kost <ensonic@users.sf.net> 2006-05-28 Stefan Kost <ensonic@users.sf.net>
* gst/adder/gstadder.c: (gst_adder_get_type): * gst/adder/gstadder.c: (gst_adder_get_type):

View file

@ -330,7 +330,8 @@ GST_START_TEST (test_wrong_caps)
GST_END_TEST; GST_END_TEST;
/* requires #343196 */
#if 0
GST_START_TEST (test_passthrough) GST_START_TEST (test_passthrough)
{ {
GstElement *volume; GstElement *volume;
@ -370,7 +371,7 @@ GST_START_TEST (test_passthrough)
} }
GST_END_TEST; GST_END_TEST;
#endiif
Suite * Suite *
volume_suite (void) volume_suite (void)
@ -384,7 +385,9 @@ volume_suite (void)
tcase_add_test (tc_chain, test_double); tcase_add_test (tc_chain, test_double);
tcase_add_test (tc_chain, test_mute); tcase_add_test (tc_chain, test_mute);
tcase_add_test (tc_chain, test_wrong_caps); tcase_add_test (tc_chain, test_wrong_caps);
tcase_add_test (tc_chain, test_passthrough); /* requires #343196
tcase_add_test (tc_chain, test_passthrough);
*/
return s; return s;
} }