summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-10-12 08:55:59 -0700
committerPixel <pixel@nobis-crew.org>2011-10-12 08:55:59 -0700
commitc8d741c4d6e54d6730aad926a5cdc534028cb78e (patch)
tree29425f7378bff4e79106b97e09fa0c4bc739a2c0
parentceb4347250d8394a2b4f5d1e634b42532f34c7d1 (diff)
Yes, surprisingly enough, one can run wine to process these unit tests.
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9241600..74e2817 100644
--- a/Makefile
+++ b/Makefile
@@ -158,6 +158,10 @@ all: dep lib
tests: $(TESTS)
ifneq ($(CROSSCOMPILE),true)
for t in $(TESTS) ; do ./$$t ; done
+else
+ifeq ($(SYSTEM),MINGW32)
+ for t in $(TESTS) ; do wine ./$$t ; done
+endif
endif
strip: $(TESTS)