annotate tests/Makefile @ 34252:0d7b77bd5744

Add lmlm4 regression test.
author cehoyos
date Thu, 10 Nov 2011 16:06:23 +0000
parents 61a7a648b002
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
34241
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
1 include ../config.mak
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
2
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
3 BROKEN_SAMPLES= \
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
4 h264-conformance/CABA3_TOSHIBA_E.264 \
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
5 h264-conformance/CAPA1_TOSHIBA_B.264 \
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
6 h264-conformance/CI1_FT_B.264 \
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
7 h264-conformance/FM1_FT_E.264 \
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
8 pva/PVA_test-partial.pva \
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
9
34243
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
10 AUDIO_ONLY_SAMPLES = \
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
11 aac/% ac3/% amrnb/% amrwb/% atrac1/% atrac3/% bink/binkaudio% \
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
12 creative/% dts/% duck/%-audio-only.avi eac3/% gsm/% imc/% \
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
13 lossless-audio/% mp3-conformance/% musepack/% nellymoser/% \
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
14 qt-surge-suite/% real/ra% sipr/% truespeech/% vorbis/% \
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
15 vqf/% w64/% wmapro/% wmavoice/% \
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
16
34241
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
17 ALLSAMPLES_FULLPATH=$(wildcard $(FATE_SAMPLES)/*/*.*)
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
18 ALLSAMPLES=$(patsubst $(FATE_SAMPLES)/%,%,$(ALLSAMPLES_FULLPATH))
34243
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
19 SAMPLES:=$(filter-out $(BROKEN_SAMPLES),$(ALLSAMPLES))
61a7a648b002 Avoid running video-only test on audio-only files.
reimar
parents: 34242
diff changeset
20 SAMPLES:=$(filter-out $(AUDIO_ONLY_SAMPLES),$(SAMPLES))
34241
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
21 RESULTS=$(patsubst %,res/%.md5,$(SAMPLES))
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
22
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
23 fatetest: $(RESULTS)
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
24
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
25 res/%.md5: ../mplayer$(EXESUF) $(FATE_SAMPLES)/%
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
26 @./faterun.sh $*
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
27
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
28 clean:
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
29 rm -rf res
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
30
f6cce8c4ea66 Add beginnings of a test framework.
reimar
parents:
diff changeset
31 .PHONY: fatetest clean