Update of /cvsroot/aaron/aaron/src/test
In directory usw-pr-cvs1:/tmp/cvs-serv24638
Modified Files:
Makefile
Log Message:
Added Makefile for the test directory.
This is going to be a mess until someone (or myself) impliments a better testing system
Index: Makefile
===================================================================
RCS file: /cvsroot/aaron/aaron/src/test/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Makefile 2001/06/29 02:00:20 1.1
--- Makefile 2001/06/29 05:34:24 1.2
***************
*** 1,9 ****
# $Id$
- TESTS= xml
-
- foo:
- @echo "Tests not implimented yet"
-
help:
@echo "Usage:"
--- 1,4 ----
***************
*** 11,15 ****
@echo " all: Run all tests"
@echo " help: This message"
- @echo " showtests: Prints a list of all of the modules"
- @echo " [test]: Runs a specific test"
--- 6,18 ----
@echo " all: Run all tests"
@echo " help: This message"
+ all: test_print_start test_xml test_print_end
+
+ test_print_end:
+ @echo "Tests finished."
+
+ test_print_start:
+ @echo "Starting tests..."
+
+ test_xml:
+ @cd xml && make test
|