Update of /cvsroot/popfile/engine/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv18324/tests
Modified Files:
Makefile
Log Message:
If DEBUGARGS is not defined then don't run the coverage tool since we wont have collected coverage data
Index: Makefile
===================================================================
RCS file: /cvsroot/popfile/engine/tests/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 13 Jul 2003 05:21:21 -0000 1.2
--- Makefile 30 Jul 2003 22:48:32 -0000 1.3
***************
*** 11,13 ****
--- 11,15 ----
runtest:
@perl -I ../ $(DEBUGARGS) ../tests.pl $(TESTARGS)
+ ifdef DEBUGARGS
@perl ../coverage.pl
+ endif
|