tests/command_test.c : Add broadcast info test for WAVEX files.

This commit is contained in:
Erik de Castro Lopo 2008-08-18 22:14:27 +10:00
parent f081b9539d
commit ca41f2649b
2 changed files with 9 additions and 0 deletions

View File

@ -22,6 +22,12 @@
* src/common.h
Double value of SF_MAX_STRINGS.
* tests/string_test.c
Add string tests for WAVEX and RIFX files.
* tests/command_test.c
Add broadcast test for WAVEX files.
2008-08-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* tests/string_test.c

View File

@ -136,6 +136,9 @@ main (int argc, char *argv [])
if (do_all || strcmp (argv [1], "bext") == 0)
{ broadcast_test ("broadcast.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;
broadcast_rdwr_test ("broadcast.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;
broadcast_test ("broadcast.wavex", SF_FORMAT_WAVEX | SF_FORMAT_PCM_16) ;
broadcast_rdwr_test ("broadcast.wavex", SF_FORMAT_WAVEX | SF_FORMAT_PCM_16) ;
test_count ++ ;
} ;