Builds/Tests

From PaparazziUAV
Revision as of 06:18, 6 March 2012 by Rbdavison (talk | contribs) (Created page with "= Automated testing = There are automated tests that can be run from the command line. To execute these tests execute the command <code>make test</code> if you require more ver…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Automated testing

There are automated tests that can be run from the command line.

To execute these tests execute the command make test if you require more verbose output of the results run the command make test TEST_VERBOSE=1

The test results can also be generated in JUnit format adding the option JUNIT=1 to the command line i.e. make test JUNIT=1 or make test TEST_VERBOSE=1 JUNIT=1

JUnit formatting of test resuls requires that the Perl module TAP::Formatters::JUnit is installed on the machine that the tests are run on.

Hardware tests

The hardware testing is executed using the Perl test framework.

The following Perl modules are required to be installed to be able to execute the hardware tests

  • IO::Socket::Multicast

Installing Perl modules

To install Perl modules the following procedure can be run. There are alternatives depending on the operating system that is being used.

  1. sudo perl -MCPAN -e shell
  2. install <module name>

This should install all of the required modules. note that errors may be reported during the installation process so you should pay attention to what is happening.