summaryrefslogtreecommitdiff
path: root/tests/fate/microsoft.mak
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-01-11 13:42:17 +0100
committerDiego Biurrun <diego@biurrun.de>2012-01-19 00:45:21 +0100
commite5903e29725126e8f57cdff98950b95732c98c51 (patch)
tree38d916b3509b6fd76e544ccacf8478b853560f8c /tests/fate/microsoft.mak
parent395e6402fed3d3d12ab8f5df7a665eb0b8f7a8dc (diff)
fate: add some shorthands to run groups of tests
Diffstat (limited to 'tests/fate/microsoft.mak')
-rw-r--r--tests/fate/microsoft.mak27
1 files changed, 18 insertions, 9 deletions
diff --git a/tests/fate/microsoft.mak b/tests/fate/microsoft.mak
index 7fd784da48..5bc27b8855 100644
--- a/tests/fate/microsoft.mak
+++ b/tests/fate/microsoft.mak
@@ -1,30 +1,39 @@
FATE_TESTS += fate-msmpeg4v1
fate-msmpeg4v1: CMD = framecrc -flags +bitexact -dct fastint -idct simple -i $(SAMPLES)/msmpeg4v1/mpg4.avi -an
-FATE_TESTS += fate-msvideo1-16bit
+FATE_MSVIDEO1 += fate-msvideo1-16bit
fate-msvideo1-16bit: CMD = framecrc -i $(SAMPLES)/cram/clock-cram16.avi -pix_fmt rgb24
-FATE_TESTS += fate-msvideo1-8bit
+FATE_MSVIDEO1 += fate-msvideo1-8bit
fate-msvideo1-8bit: CMD = framecrc -i $(SAMPLES)/cram/skating.avi -t 1 -pix_fmt rgb24
-FATE_TESTS += fate-wmv8-drm
+FATE_TESTS += $(FATE_MSVIDEO1)
+fate-msvideo1: $(FATE_MSVIDEO1)
+
+FATE_WMV8_DRM += fate-wmv8-drm
# discard last packet to avoid fails due to overread of VC-1 decoder
fate-wmv8-drm: CMD = framecrc -cryptokey 137381538c84c068111902a59c5cf6c340247c39 -i $(SAMPLES)/wmv8/wmv_drm.wmv -an -vframes 162
-FATE_TESTS += fate-wmv8-drm-nodec
+FATE_WMV8_DRM += fate-wmv8-drm-nodec
fate-wmv8-drm-nodec: CMD = framecrc -cryptokey 137381538c84c068111902a59c5cf6c340247c39 -i $(SAMPLES)/wmv8/wmv_drm.wmv -acodec copy -vcodec copy
-FATE_TESTS += fate-vc1_sa00040
+FATE_TESTS += $(FATE_WMV8_DRM)
+fate-wmv8_drm: $(FATE_WMV8_DRM)
+
+FATE_VC1 += fate-vc1_sa00040
fate-vc1_sa00040: CMD = framecrc -i $(SAMPLES)/vc1/SA00040.vc1
-FATE_TESTS += fate-vc1_sa00050
+FATE_VC1 += fate-vc1_sa00050
fate-vc1_sa00050: CMD = framecrc -i $(SAMPLES)/vc1/SA00050.vc1
-FATE_TESTS += fate-vc1_sa10091
+FATE_VC1 += fate-vc1_sa10091
fate-vc1_sa10091: CMD = framecrc -i $(SAMPLES)/vc1/SA10091.vc1
-FATE_TESTS += fate-vc1_sa20021
+FATE_VC1 += fate-vc1_sa20021
fate-vc1_sa20021: CMD = framecrc -i $(SAMPLES)/vc1/SA20021.vc1
-FATE_TESTS += fate-vc1-ism
+FATE_VC1 += fate-vc1-ism
fate-vc1-ism: CMD = framecrc -i $(SAMPLES)/isom/vc1-wmapro.ism -an
+
+FATE_TESTS += $(FATE_VC1)
+fate-vc1: $(FATE_VC1)