blob: a9334eb10be096ea8b53646207c6d6c8c87f3e7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# WAV tests
${BUILD_DIR}/asdcp-test${EXEEXT} -c ${TEST_FILES}/write_test_wav.mxf ${TEST_FILES}/${TEST_FILE_PREFIX}.wav
if [ $? -ne 0 ]; then
exit 1
fi
${BUILD_DIR}/asdcp-test${EXEEXT} -x ${TEST_FILES}/extract ${TEST_FILES}/write_test_wav.mxf
if [ $? -ne 0 ]; then
exit 1
fi
cmp ${TEST_FILES}/${TEST_FILE_PREFIX}.wav ${TEST_FILES}/extract_1.wav
if [ $? -ne 0 ]; then
exit 1
fi
|