|
From: <jgr...@us...> - 2003-07-13 02:40:38
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv21270 Modified Files: Makefile tests.pl Log Message: Make test suite run from within the tests/ subdirectory to avoid interference with an installed POPFile. You must now use the Makefile to execute tests. A outline of class that will be used for proxy testing and improve WordMangle tests Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile 9 Jul 2003 18:18:09 -0000 1.12 --- Makefile 13 Jul 2003 02:40:35 -0000 1.13 *************** *** 29,33 **** @echo with arguments '$(TESTARGS)' endif ! @perl -d:TestCoverage tests.pl $(TESTARGS) test: --- 29,33 ---- @echo with arguments '$(TESTARGS)' endif ! @$(MAKE) --no-print-directory -C tests runtest TESTARGS=$(TESTARGS) DEBUGARGS=-d:TestCoverage test: *************** *** 36,40 **** @echo with arguments '$(TESTARGS)' endif ! @perl tests.pl $(TESTARGS) # windows builds the Windows installer --- 36,40 ---- @echo with arguments '$(TESTARGS)' endif ! @$(MAKE) --no-print-directory -C tests runtest TESTARGS=$(TESTARGS) DEBUGARGS= # windows builds the Windows installer Index: tests.pl =================================================================== RCS file: /cvsroot/popfile/engine/tests.pl,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** tests.pl 12 Jul 2003 06:17:03 -0000 1.19 --- tests.pl 13 Jul 2003 02:40:35 -0000 1.20 *************** *** 133,137 **** # MAIN ! my @tests = glob 'tests/*.tst'; # Either match all the possible tests, or take the first argument --- 133,137 ---- # MAIN ! my @tests = glob '*.tst'; # Either match all the possible tests, or take the first argument |