1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
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 wav-subformat-test test-programs
if COND_WITH_FFMPEG
CHECKS += hls-test raw-format-test
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 wav-subformat-test.sh test-programs.sh \
raw-format-test.sh
check: $(CHECKS)
detect-speed-test:
Q=1 $(top_srcdir)/tests/detect-speed-test.sh
block-decoder-test:
Q=1 $(top_srcdir)/tests/block-decoder-test.sh
clip-decoder-test:
Q=1 $(top_srcdir)/tests/clip-decoder-test.sh
pipe-test:
Q=1 $(top_srcdir)/tests/pipe-test.sh
wav-pipe-test:
Q=1 $(top_srcdir)/tests/wav-pipe-test.sh
wav-subformat-test:
Q=1 $(top_srcdir)/tests/wav-subformat-test.sh
short-payload-test:
Q=1 $(top_srcdir)/tests/short-payload-test.sh
sync-test:
Q=1 $(top_srcdir)/tests/sync-test.sh
sample-rate-test:
Q=1 $(top_srcdir)/tests/sample-rate-test.sh
key-test:
Q=1 $(top_srcdir)/tests/key-test.sh
hls-test:
Q=1 $(top_srcdir)/tests/hls-test.sh
raw-format-test:
Q=1 $(top_srcdir)/tests/raw-format-test.sh
test-programs:
Q=1 $(top_srcdir)/tests/test-programs.sh
|