summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-11-22 15:02:15 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-11-22 15:02:15 +0000
commitb31ce48a0dd79d46bf73530c145cd0b2f7749850 (patch)
tree7c16df842592b55a3c04f2117d198bece6985533
parente1806aa1ad98109542b44e8137a2ba9343996a42 (diff)
downloadgst-plugins-bad-b31ce48a0dd79d46bf73530c145cd0b2f7749850.tar.gz
gst-plugins-bad-b31ce48a0dd79d46bf73530c145cd0b2f7749850.tar.bz2
gst-plugins-bad-b31ce48a0dd79d46bf73530c145cd0b2f7749850.zip
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.
-rw-r--r--ChangeLog6
-rw-r--r--tests/check/elements/speexresample.c12
2 files changed, 6 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 23d6dfed..7937f0c6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-11-22 Sebastian Dröge <sebastian.droege@collabora.co.uk>
+ * tests/check/elements/speexresample.c: (GST_START_TEST):
+ Make the unit test a bit faster to prevent timeouts, especially
+ with valgrind.
+
+2008-11-22 Sebastian Dröge <sebastian.droege@collabora.co.uk>
+
* gst/mxf/mxfdemux.c: (gst_mxf_demux_push_src_event),
(gst_mxf_demux_handle_header_metadata_update_streams):
* gst/mxf/mxfparse.c: (gst_mxf_ul_hash),
diff --git a/tests/check/elements/speexresample.c b/tests/check/elements/speexresample.c
index 31c8c4e3..c989ba3a 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);
}
}