From: Sebastian Dröge Date: Sat, 22 Nov 2008 15:02:15 +0000 (+0000) Subject: tests/check/elements/speexresample.c: Make the unit test a bit faster to prevent... X-Git-Tag: 1.19.3~511^2~10177 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f31ea1e221c6b9e1346ce97c853916544bd9de4c;p=platform%2Fupstream%2Fgstreamer.git tests/check/elements/speexresample.c: Make the unit test a bit faster to prevent timeouts, especially with valgrind. Original commit message from CVS: * tests/check/elements/speexresample.c: (GST_START_TEST): Make the unit test a bit faster to prevent timeouts, especially with valgrind. --- diff --git a/tests/check/elements/speexresample.c b/tests/check/elements/speexresample.c index 31c8c4e..c989ba3 100644 --- a/tests/check/elements/speexresample.c +++ b/tests/check/elements/speexresample.c @@ -655,33 +655,21 @@ GST_START_TEST (test_pipelines) for (quality = 0; quality < 11; quality += 5) { test_pipeline (8, FALSE, 44100, 48000, quality); test_pipeline (8, FALSE, 48000, 44100, quality); - test_pipeline (8, FALSE, 40000, 80000, quality); - test_pipeline (8, FALSE, 80000, 40000, quality); test_pipeline (16, FALSE, 44100, 48000, quality); test_pipeline (16, FALSE, 48000, 44100, quality); - test_pipeline (16, FALSE, 40000, 80000, quality); - test_pipeline (16, FALSE, 80000, 40000, quality); test_pipeline (24, FALSE, 44100, 48000, quality); test_pipeline (24, FALSE, 48000, 44100, quality); - test_pipeline (24, FALSE, 40000, 80000, quality); - test_pipeline (24, FALSE, 80000, 40000, quality); test_pipeline (32, FALSE, 44100, 48000, quality); test_pipeline (32, FALSE, 48000, 44100, quality); - test_pipeline (32, FALSE, 40000, 80000, quality); - test_pipeline (32, FALSE, 80000, 40000, quality); test_pipeline (32, TRUE, 44100, 48000, quality); test_pipeline (32, TRUE, 48000, 44100, quality); - test_pipeline (32, TRUE, 40000, 80000, quality); - test_pipeline (32, TRUE, 80000, 40000, quality); test_pipeline (64, TRUE, 44100, 48000, quality); test_pipeline (64, TRUE, 48000, 44100, quality); - test_pipeline (64, TRUE, 40000, 80000, quality); - test_pipeline (64, TRUE, 80000, 40000, quality); } }