summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-07-11 02:18:44 -0400
committerGregory Maxwell <greg@xiph.org>2012-07-11 02:18:44 -0400
commit9881484dbde25707b93d988cff6316d2f375727a (patch)
treedc302854a72bd052a6743b8e2f9cbe7aa2163c6e /tests
parent28b41ae5ae1acf6eb222858567952564838d48f5 (diff)
downloadopus-9881484dbde25707b93d988cff6316d2f375727a.tar.gz
test_opus_api: Fix valgrind expectations broken by last commit.
The last commit changed some of the multistream tests to use a dual-mono setup instead of a single-stereo setup. Some of the accompanying explicit valgrind checks were still setup to look for stereo streams.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_opus_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_opus_api.c b/tests/test_opus_api.c
index 641f6eac..66efa1bc 100644
--- a/tests/test_opus_api.c
+++ b/tests/test_opus_api.c
@@ -422,13 +422,14 @@ opus_int32 test_msdec_api(void)
cfgs++;
err=opus_multistream_decoder_ctl(dec, OPUS_MULTISTREAM_GET_DECODER_STATE(1,&streamdec));
if(err!=OPUS_OK||streamdec==NULL)test_failed();
+ VG_CHECK(streamdec,opus_decoder_get_size(1));
cfgs++;
err=opus_multistream_decoder_ctl(dec, OPUS_MULTISTREAM_GET_DECODER_STATE(2,&streamdec));
if(err!=OPUS_BAD_ARG)test_failed();
cfgs++;
err=opus_multistream_decoder_ctl(dec, OPUS_MULTISTREAM_GET_DECODER_STATE(0,&streamdec));
if(err!=OPUS_OK||streamdec==NULL)test_failed();
- VG_CHECK(streamdec,opus_decoder_get_size(2));
+ VG_CHECK(streamdec,opus_decoder_get_size(1));
fprintf(stdout," OPUS_MULTISTREAM_GET_DECODER_STATE ........... OK.\n");
cfgs++;