[MPlayer-cvslog] r34331 - trunk/tests/Makefile
reimar
subversion at mplayerhq.hu
Tue Nov 8 22:12:38 CET 2011
Author: reimar
Date: Tue Nov 8 22:12:37 2011
New Revision: 34331
Log:
Avoid running video-only test on audio-only files.
Saves on run-time and also makes it easier to spot video files
that fail to decode (result in 0-size output files).
Modified:
trunk/tests/Makefile
Modified: trunk/tests/Makefile
==============================================================================
--- trunk/tests/Makefile Tue Nov 8 21:59:38 2011 (r34330)
+++ trunk/tests/Makefile Tue Nov 8 22:12:37 2011 (r34331)
@@ -8,9 +8,17 @@ BROKEN_SAMPLES= \
lmlm4/LMLM4_CIFat30fps.divx \
pva/PVA_test-partial.pva \
+AUDIO_ONLY_SAMPLES = \
+ aac/% ac3/% amrnb/% amrwb/% atrac1/% atrac3/% bink/binkaudio% \
+ creative/% dts/% duck/%-audio-only.avi eac3/% gsm/% imc/% \
+ lossless-audio/% mp3-conformance/% musepack/% nellymoser/% \
+ qt-surge-suite/% real/ra% sipr/% truespeech/% vorbis/% \
+ vqf/% w64/% wmapro/% wmavoice/% \
+
ALLSAMPLES_FULLPATH=$(wildcard $(FATE_SAMPLES)/*/*.*)
ALLSAMPLES=$(patsubst $(FATE_SAMPLES)/%,%,$(ALLSAMPLES_FULLPATH))
-SAMPLES=$(filter-out $(BROKEN_SAMPLES),$(ALLSAMPLES))
+SAMPLES:=$(filter-out $(BROKEN_SAMPLES),$(ALLSAMPLES))
+SAMPLES:=$(filter-out $(AUDIO_ONLY_SAMPLES),$(SAMPLES))
RESULTS=$(patsubst %,res/%.md5,$(SAMPLES))
fatetest: $(RESULTS)
More information about the MPlayer-cvslog
mailing list