Skip to content

Commit

Permalink
add 'make testj' for 'prove -j'; add -j to fulltest as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Dec 19, 2009
1 parent e005f28 commit d37d2ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/Makefile.in
Expand Up @@ -71,10 +71,12 @@ TEST_FILES = \
# Only those tests that pass for now.
test: $(PARTCL_EXE)
prove -s --exec=./$(PARTCL_EXE) $(TEST_FILES)
testj: $(PARTCL_EXE)
prove -s -j3 --exec=./$(PARTCL_EXE) $(TEST_FILES)

# Expected to fail.
fulltest:
prove --exec=./$(PARTCL_EXE) t
prove -s -j3 -r --exec=./$(PARTCL_EXE) t

## cleaning

Expand Down

0 comments on commit d37d2ae

Please sign in to comment.