diff options
author | Pixel <pixel@nobis-crew.org> | 2011-10-12 08:55:59 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2011-10-12 08:55:59 -0700 |
commit | c8d741c4d6e54d6730aad926a5cdc534028cb78e (patch) | |
tree | 29425f7378bff4e79106b97e09fa0c4bc739a2c0 | |
parent | ceb4347250d8394a2b4f5d1e634b42532f34c7d1 (diff) |
Yes, surprisingly enough, one can run wine to process these unit tests.
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) |