mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 05:53:12 +00:00
make separate makefile targets for test-foolscap and test-TEST
So that if you want to run just one test, you can run "make test-TEST TEST=that.one.test" and not get the whole foolscap suite thrown in for the bargain.
This commit is contained in:
parent
cb57508b0a
commit
dfe399bb5f
@ -116,10 +116,14 @@ REPORTER=
|
|||||||
|
|
||||||
# use 'make test REPORTER=--reporter=bwverbose' from buildbot, to supress the
|
# use 'make test REPORTER=--reporter=bwverbose' from buildbot, to supress the
|
||||||
# ansi color sequences
|
# ansi color sequences
|
||||||
test: build
|
test: build test-foolscap test-TEST
|
||||||
$(PP) $(TRIAL) $(REPORTER) $(TEST) ;
|
|
||||||
|
test-foolscap:
|
||||||
cd src/foolscap && $(TRIAL) $(REPORTER) foolscap
|
cd src/foolscap && $(TRIAL) $(REPORTER) foolscap
|
||||||
|
|
||||||
|
test-TEST:
|
||||||
|
$(PP) $(TRIAL) $(REPORTER) $(TEST)
|
||||||
|
|
||||||
test-figleaf: build
|
test-figleaf: build
|
||||||
rm -f .figleaf
|
rm -f .figleaf
|
||||||
$(PP) $(TRIAL) --reporter=bwverbose-figleaf $(TEST)
|
$(PP) $(TRIAL) --reporter=bwverbose-figleaf $(TEST)
|
||||||
|
Loading…
Reference in New Issue
Block a user