| 12345678910111213141516171819202122232425262728293031323334353637 |
- # Variables to be defined:
- #
- # TEST_PREFIX - set to the path to prefix to each test case for execution
- # TEST_VERBOSE - set to 0 (default) or 1 to control test suite verbosity
- # TEST_ENV_VARS - environment variables to be set for the test suite
- # TEST_COVERAGE - set to the perl module in charge of getting test coverage
- # test_tmpdir - test suite temporary directory
- # test_cases - list of test case files
- # test_data - list of test data files
- TEST_VERBOSE ?= 0
- TEST_RUNNER = '\
- my $$harness = TAP::Harness->new({ \
- lib => [ "$(top_srcdir)/scripts" ], \
- color => 1, \
- verbosity => $(TEST_VERBOSE), \
- failures => 1, \
- }); \
- $$harness->runtests(@ARGV);'
- check-clean:
- [ -z "$(test_tmpdir)" ] || rm -fr $(test_tmpdir)
- check-local: $(test_data) $(test_cases)
- [ -z "$(test_tmpdir)" ] || $(MKDIR_P) $(test_tmpdir)
- PATH="$(top_builddir)/src:$(top_builddir)/scripts:$(top_builddir)/utils:$(PATH)" \
- LC_ALL=C \
- $(TEST_ENV_VARS) \
- srcdir=$(srcdir) builddir=$(builddir) \
- PERL_DL_NONLAZY=1 \
- PERL5OPT=$(TEST_COVERAGE) \
- $(PERL) -MTAP::Harness -e $(TEST_RUNNER) \
- $(if $(TEST_PREFIX), \
- $(addprefix $(TEST_PREFIX)/,$(test_cases)), \
- $(addprefix $(srcdir)/,$(test_cases)))
|