From 715a2b7f220778a1cc5f6ac6311a4630571003ef Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 25 Nov 2009 11:41:25 +0000 Subject: [PATCH] note an issue with standalone test runner, make unittest uses the built-in test runner again --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 61411806b..a5d32e54b 100644 --- a/Makefile +++ b/Makefile @@ -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