Started adding a Perl test framework. Need to work out how to print JUnit test results though...

This commit is contained in:
Bernard Davison
2012-03-04 23:11:18 +11:00
parent da12d67fb5
commit debabf1697
3 changed files with 28 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
PERL = perl
TEST_VERBOSE=0
ifeq ($(AIRCRAFT),)
AIRCRAFT=*
endif
TEST_FILES = $(AIRCRAFT)/*.t
test:
$(PERL) "-MExtUtils::Command::MM" "-e" "test_harness($(TEST_VERBOSE))" $(TEST_FILES)