Mercurial > mplayer.hg
annotate tests/Makefile @ 34321:daebf766dea6
Cosmetic: Synchronize evPlaylist event and message names.
author | ib |
---|---|
date | Thu, 08 Dec 2011 16:06:24 +0000 |
parents | 0d7b77bd5744 |
children |
rev | line source |
---|---|
34241 | 1 include ../config.mak |
2 | |
3 BROKEN_SAMPLES= \ | |
4 h264-conformance/CABA3_TOSHIBA_E.264 \ | |
5 h264-conformance/CAPA1_TOSHIBA_B.264 \ | |
6 h264-conformance/CI1_FT_B.264 \ | |
7 h264-conformance/FM1_FT_E.264 \ | |
8 pva/PVA_test-partial.pva \ | |
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 | 17 ALLSAMPLES_FULLPATH=$(wildcard $(FATE_SAMPLES)/*/*.*) |
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 | 21 RESULTS=$(patsubst %,res/%.md5,$(SAMPLES)) |
22 | |
23 fatetest: $(RESULTS) | |
24 | |
25 res/%.md5: ../mplayer$(EXESUF) $(FATE_SAMPLES)/% | |
26 @./faterun.sh $* | |
27 | |
28 clean: | |
29 rm -rf res | |
30 | |
31 .PHONY: fatetest clean |