]> rtime.felk.cvut.cz Git - omk.git/commitdiff
Fix error in test runner
authorMichal Sojka <sojkam1@fel.cvut.cz>
Tue, 30 Apr 2013 13:35:50 +0000 (15:35 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Tue, 30 Apr 2013 13:35:50 +0000 (15:35 +0200)
This caused some errors to be not detected, because some tests were
not run.

tests/Makefile

index 0656290fc658469803cbf615ab3043727582066a..8ac0efad1c5e65b7ca149903a3394df7d3f7f079 100644 (file)
@@ -20,7 +20,7 @@ RULES=$(shell cd ../rules; ls)
 
 run-%: %
 ifeq ($(OMK_RULES),)
-       LC_ALL=C for i in $(RULES); do OMK_RULES=$$i ./$* || exit 1; done
+       for i in $(RULES); do LC_ALL=C OMK_RULES=$$i ./$* || exit 1; done
 else
        LC_ALL=C ./$*
 endif