Skip to content

Commit

Permalink
Clean up test targets so they actually run all of the tests they're e…
Browse files Browse the repository at this point in the history
…xpected to and give a single summary at the end of doing so.
  • Loading branch information
jnthn committed Sep 2, 2012
1 parent 539f35b commit 1801844
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions tools/build/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1072,24 +1072,23 @@ bootstrap-files: $(STAGE2_PBCS) src/stage2/$(CORE_SETTING_NQP)

## testing

test: all core-test setting-test qregex-test
test: all
prove -r --exec ./$(NQP_EXE) t/nqp t/hll t/qregex t/p5regex t/qast t/serialization

test-loud: all core-test-loud setting-test-loud
test-loud: all
prove -r -v --exec ./$(NQP_EXE) t/nqp t/hll t/qregex t/p5regex t/qast t/serialization

core-test: $(NQP_EXE)
prove -r --exec ./$(NQP_EXE) t/nqp t/qast t/hll
prove -r --exec ./$(NQP_EXE) t/nqp

core-test-loud: $(NQP_EXE)
prove -r -v --exec ./$(NQP_EXE) t/nqp t/qast t/hll
prove -r -v --exec ./$(NQP_EXE) t/nqp

qregex-test: $(NQP_EXE)
prove -r --exec ./$(NQP_EXE) t/qregex

setting-test: $(NQP_EXE) $(SETTING_PBC)
prove -r --exec ./$(NQP_EXE) t/setting

setting-test-loud: $(NQP_EXE) $(SETTING_PBC)
prove -r -v --exec ./$(NQP_EXE) t/setting
qregex-test-loud: $(NQP_EXE)
prove -r -v --exec ./$(NQP_EXE) t/qregex

## cleaning

Expand Down

0 comments on commit 1801844

Please sign in to comment.