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.
# use 'make test REPORTER=--reporter=bwverbose' from buildbot, to supress the
# ansi color sequences
-test: build
- $(PP) $(TRIAL) $(REPORTER) $(TEST) ;
+test: build test-foolscap test-TEST
+
+test-foolscap:
cd src/foolscap && $(TRIAL) $(REPORTER) foolscap
+test-TEST:
+ $(PP) $(TRIAL) $(REPORTER) $(TEST)
+
test-figleaf: build
rm -f .figleaf
$(PP) $(TRIAL) --reporter=bwverbose-figleaf $(TEST)