diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2007-08-12 20:55:01 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2007-08-12 20:55:01 +0000 |
commit | dcb082ccae862a4e2df90b48f8281169d993cec4 (patch) | |
tree | 4ee899509de9416c1dc7d9389516db665bcf8172 | |
parent | e381cedec4baa0e2d209f1b57bce32f6f5e8421e (diff) | |
download | gst-plugins-bad-dcb082ccae862a4e2df90b48f8281169d993cec4.tar.gz gst-plugins-bad-dcb082ccae862a4e2df90b48f8281169d993cec4.tar.bz2 gst-plugins-bad-dcb082ccae862a4e2df90b48f8281169d993cec4.zip |
tests/check/elements/bpwsinc.c: Make one test constraint a bit stricter.
Original commit message from CVS:
* tests/check/elements/bpwsinc.c: (GST_START_TEST):
Make one test constraint a bit stricter.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/check/elements/bpwsinc.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2007-08-12 Sebastian Dröge <slomo@circular-chaos.org> + * tests/check/elements/bpwsinc.c: (GST_START_TEST): + Make one test constraint a bit stricter. + +2007-08-12 Sebastian Dröge <slomo@circular-chaos.org> + * tests/check/Makefile.am: * tests/check/elements/.cvsignore: * tests/check/elements/bpwsinc.c: (setup_bpwsinc), diff --git a/tests/check/elements/bpwsinc.c b/tests/check/elements/bpwsinc.c index 4faf6fc2..1295fac4 100644 --- a/tests/check/elements/bpwsinc.c +++ b/tests/check/elements/bpwsinc.c @@ -254,7 +254,7 @@ GST_START_TEST (test_bp_22050hz) for (i = 0; i < 1024; i++) rms += res[i] * res[i]; rms = sqrt (rms / 1024.0); - fail_unless (rms <= 0.3); + fail_unless (rms <= 0.1); /* cleanup */ cleanup_bpwsinc (bpwsinc); |