Commit 2f5f67d4 authored by Stefan Westerfeld's avatar Stefan Westerfeld

TESTS: run testrawconverter in make check

Signed-off-by: Stefan Westerfeld's avatarStefan Westerfeld <stefan@space.twc.de>
parent 868e6cd0
CHECKS = detect-speed-test block-decoder-test clip-decoder-test \
pipe-test short-payload-test sync-test sample-rate-test \
key-test wav-pipe-test
key-test wav-pipe-test test-programs
if COND_WITH_FFMPEG
CHECKS += hls-test
......@@ -8,7 +8,7 @@ endif
EXTRA_DIST = detect-speed-test.sh block-decoder-test.sh clip-decoder-test.sh \
pipe-test.sh short-payload-test.sh sync-test.sh sample-rate-test.sh \
key-test.sh hls-test.sh wav-pipe-test.sh
key-test.sh hls-test.sh wav-pipe-test.sh test-programs.sh
check: $(CHECKS)
......@@ -41,3 +41,6 @@ key-test:
hls-test:
Q=1 $(top_srcdir)/tests/hls-test.sh
test-programs:
Q=1 $(top_srcdir)/tests/test-programs.sh
......@@ -2,6 +2,7 @@
AUDIOWMARK=@top_builddir@/src/audiowmark
TEST_MSG=f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0
TOP_BUILDDIR=@top_builddir@
# common shell functions
......
#!/bin/bash
source test-common.sh
for TEST in testrawconverter
do
if [ "x$Q" == "x1" ] && [ -z "$V" ]; then
$TOP_BUILDDIR/src/$TEST > /dev/null
else
$TOP_BUILDDIR/src/$TEST
fi
done
exit 0
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment