Getting a little further into the process of testing the hardware. Now we need to read and write to the Ivy bus to run the actual tests.

Then there's the cleanup to do to make this all much easier to do in the future to more boards...
This commit is contained in:
Bernard Davison
2012-03-08 00:17:12 +11:00
parent 9a3027ca0a
commit e45fb91b64
5 changed files with 798 additions and 3 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ TEST_FILES := $(shell ls $(TARGET_BOARD)/*.t)
ifneq ($(JUNIT),)
PERLENV=PERL_TEST_HARNESS_DUMP_TAP=$(PAPARAZZI_SRC)/tests/results
RUNTESTS=use TAP::Harness; TAP::Harness->new({ formatter_class => 'TAP::Formatter::JUnit', merge => 1, } )->runtests(qw($(TEST_FILES)))
RUNTESTS=use TAP::Harness; TAP::Harness->new({ formatter_class => 'TAP::Formatter::JUnit', verbosity => $(TEST_VERBOSE), merge => 1, } )->runtests(qw($(TEST_FILES)))
else
PERLENV=
RUNTESTS=use TAP::Harness;TAP::Harness->new()->runtests(qw($(TEST_FILES)))
RUNTESTS=use TAP::Harness;TAP::Harness->new( { verbosity => $(TEST_VERBOSE) } )->runtests(qw($(TEST_FILES)))
endif
test: