Skip to content

Commit

Permalink
Add 'moretests' make target: test + examples_tests + codetest (except…
Browse files Browse the repository at this point in the history
… perlcritict.t).
  • Loading branch information
jkeenan committed Dec 31, 2010
1 parent 63d7ce6 commit 87e332f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions config/gen/makefiles/root.in
Expand Up @@ -789,6 +789,7 @@ help :
@echo " buildtools_tests: Test build tool pmc2c.pl."
@echo " manifest_tests: Test code underlying mk_manifest_and_skip.pl."
@echo " examples_tests: Test the example scripts."
@echo " moretests: Run standard suite, examples and most coding standards tests."
@echo ""
@echo "Smoke Testing:"
@echo " smolder_test: Run the test suite and send report to the smolder server"
Expand Down Expand Up @@ -2108,6 +2109,9 @@ run_tests :
perl_tests :
$(PERL) t/harness $(PERL_TEST_FILES)

nocritic_codetest :
PARROT_TEST_NO_PERLCRITIC=1 $(PERL) t/harness $(EXTRA_TEST_ARGS) --code-tests

codetest :
$(PERL) t/harness $(EXTRA_TEST_ARGS) --code-tests

Expand All @@ -2128,6 +2132,12 @@ manifest_tests :
examples_tests : test_prep
$(PERL) t/harness $(EXAMPLES_TEST_FILES)

# moretests: Good to use before branch merges
moretests: test_prep \
test \
examples_tests \
nocritic_codetest

# benchmark tests
benchmark_tests : test_prep
$(PERL) t/harness $(BENCHMARK_TEST_FILES)
Expand Down

0 comments on commit 87e332f

Please sign in to comment.