FFmpeg/tests/fate/checkasm.mak
Martin Storsjö 39e16ee228 Revert "fate: Skip the checkasm test if CONFIG_STATIC is disabled"
When we use dllexport properly for shared libraries on windows,
there's no longer any issue with linking the object files for
e.g. libavcodec statically into checkasm. (It's still not possible
to link the built object files for e.g. libavformat statically to
libavcodec though, since libavformat exepcts to load av_export_*
symbols from a DLL.)

This reverts commit 4e62b57ee0.

Signed-off-by: Martin Storsjö <martin@martin.st>
2017-08-31 14:22:47 +03:00

24 lines
1.4 KiB
Makefile

FATE_CHECKASM = fate-checkasm-audiodsp \
fate-checkasm-blockdsp \
fate-checkasm-bswapdsp \
fate-checkasm-dcadsp \
fate-checkasm-fmtconvert \
fate-checkasm-h264dsp \
fate-checkasm-h264pred \
fate-checkasm-h264qpel \
fate-checkasm-hevc_add_res \
fate-checkasm-hevc_idct \
fate-checkasm-hevc_mc \
fate-checkasm-huffyuvdsp \
fate-checkasm-synth_filter \
fate-checkasm-v210enc \
fate-checkasm-vp8dsp \
fate-checkasm-vp9dsp \
$(FATE_CHECKASM): tests/checkasm/checkasm$(EXESUF)
$(FATE_CHECKASM): CMD = run tests/checkasm/checkasm --test=$(@:fate-checkasm-%=%)
$(FATE_CHECKASM): REF = /dev/null
FATE += $(FATE_CHECKASM)
fate-checkasm: $(FATE_CHECKASM)