Browse Source

+ DOALL added

pierre 23 years ago
parent
commit
07d6364c50
2 changed files with 13 additions and 5 deletions
  1. 6 3
      tests/Makefile
  2. 7 2
      tests/Makefile.fpc

+ 6 - 3
tests/Makefile

@@ -1,5 +1,5 @@
 #
 #
-# Don't edit, this file is generated by FPCMake Version 1.1 [2002/11/18]
+# Don't edit, this file is generated by FPCMake Version 1.1 [2002/09/26]
 #
 #
 default: allexectests
 default: allexectests
 MAKEFILETARGETS=linux go32v2 win32 os2 freebsd beos netbsd amiga atari sunos qnx netware openbsd wdosx
 MAKEFILETARGETS=linux go32v2 win32 os2 freebsd beos netbsd amiga atari sunos qnx netware openbsd wdosx
@@ -1093,10 +1093,13 @@ endif
 ifdef INTERACTIVE
 ifdef INTERACTIVE
 override DOTESTOPT+=-i
 override DOTESTOPT+=-i
 endif
 endif
+ifdef DOALL
+override DOTESTOPT=-a
+endif
 DIRS=webtbs webtbf tbs tbf test test/cg test/units/system test/units/dos test/units/objects
 DIRS=webtbs webtbf tbs tbf test test/cg test/units/system test/units/dos test/units/objects
-%.log : %.pp
+%.log : %.pp $(DOTEST)
 	$(DOTEST) $(DOTESTOPT) $<
 	$(DOTEST) $(DOTESTOPT) $<
-%.elg : %.pp
+%.elg : %.pp $(DOTEST)
 	$(DOTEST) $(DOTESTOPT) -e $<
 	$(DOTEST) $(DOTESTOPT) -e $<
 .PHONY: allpreps
 .PHONY: allpreps
 ifdef CCOMPILER
 ifdef CCOMPILER

+ 7 - 2
tests/Makefile.fpc

@@ -86,16 +86,21 @@ ifdef INTERACTIVE
 override DOTESTOPT+=-i
 override DOTESTOPT+=-i
 endif
 endif
 
 
+ifdef DOALL
+override DOTESTOPT=-a
+endif
+
+
 #
 #
 # Test run targets
 # Test run targets
 #
 #
 
 
 DIRS=webtbs webtbf tbs tbf test test/cg test/units/system test/units/dos test/units/objects
 DIRS=webtbs webtbf tbs tbf test test/cg test/units/system test/units/dos test/units/objects
 
 
-%.log : %.pp
+%.log : %.pp $(DOTEST)
         $(DOTEST) $(DOTESTOPT) $<
         $(DOTEST) $(DOTESTOPT) $<
 
 
-%.elg : %.pp
+%.elg : %.pp $(DOTEST)
         $(DOTEST) $(DOTESTOPT) -e $<
         $(DOTEST) $(DOTESTOPT) -e $<
 
 
 #
 #