note an issue with standalone test runner, make unittest uses the built-in test runner again

This commit is contained in:
Simon Michael 2009-11-25 11:41:25 +00:00
parent 984da9c504
commit 715a2b7f22

View File

@ -118,12 +118,13 @@ releasetest: unittest doctest functest haddocktest warningstest fullcabaltest
# run unit tests
unittest: unittest-standalone
unittest: unittest-builtin
unittest-builtin: hledger
@(./hledger test \
&& echo $@ passed) || echo $@ FAILED
# XXX doesn't rebuild on hledger source changes
unittest-standalone: tools/unittest
@(tools/unittest \
&& echo $@ passed) || echo $@ FAILED