summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2013-03-12 15:47:57 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2013-03-12 15:52:17 +0100
commit4c4ae3fa173fe2b8f23b402d10a1bd9d9731da90 (patch)
tree6bc13f97d26aa75e4f257cf2595d7509105fbff1
parent3790f56b2be9358815812bfad0b8098728a694db (diff)
gbuild: correct instructions for running an individual junit test
Change-Id: Ied3e6c042bc6cbdbfe0e9773d5c1e1de55141902
-rw-r--r--solenv/gbuild/JunitTest.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/gbuild/JunitTest.mk b/solenv/gbuild/JunitTest.mk
index cb89d6cf720f..99d76f73515e 100644
--- a/solenv/gbuild/JunitTest.mk
+++ b/solenv/gbuild/JunitTest.mk
@@ -55,12 +55,12 @@ $(call gb_JunitTest_get_target,%) :
$(CLASSES) > $@.log 2>&1 || \
(cat $@.log \
&& echo "to rerun just this failed test without all others, run:" \
- && echo && echo " make $@" && echo \
+ && echo && echo " make JunitTest_$*" && echo \
&& echo "cd into the module dir to run the tests faster" \
&& echo "Or to do interactive debugging, run two shells with (Linux only):" \
&& echo \
&& echo " make debugrun" \
- && echo " make gb_JunitTest_DEBUGRUN=T $@" \
+ && echo " make gb_JunitTest_DEBUGRUN=T JunitTest_$*" \
&& echo \
&& false)) && \
rm -rf $(call gb_JunitTest_get_userdir,$*))