From 9881484dbde25707b93d988cff6316d2f375727a Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Wed, 11 Jul 2012 02:18:44 -0400 Subject: [PATCH] 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. --- tests/test_opus_api.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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++;