[FFmpeg-cvslog] fate: Skip the checkasm test if CONFIG_STATIC is disabled

Martin Storsjö git at videolan.org
Fri May 5 12:26:07 EEST 2017


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Fri Dec 30 21:45:51 2016 +0200| [4e62b57ee03928c12a3119dcaf78ffa1f4d6985f] | committer: Martin Storsjö

fate: Skip the checkasm test if CONFIG_STATIC is disabled

When building DLLs with MSVC, CONFIG_STATIC is disabled (see
d66c52c2b3694 for a more verbose explanation) since the built
object files can't be linked statically (which checkasm does).

This worked up until recently, only by luck.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4e62b57ee03928c12a3119dcaf78ffa1f4d6985f
---

 tests/fate/checkasm.mak | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fate/checkasm.mak b/tests/fate/checkasm.mak
index 939eb567cd..5721f1f53c 100644
--- a/tests/fate/checkasm.mak
+++ b/tests/fate/checkasm.mak
@@ -19,5 +19,5 @@ $(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-$(CONFIG_STATIC) += $(FATE_CHECKASM)
 fate-checkasm: $(FATE_CHECKASM)



More information about the ffmpeg-cvslog mailing list