Kaydet (Commit) 4c4ae3fa authored tarafından Matúš Kukan's avatar Matúš Kukan

gbuild: correct instructions for running an individual junit test

Change-Id: Ied3e6c042bc6cbdbfe0e9773d5c1e1de55141902
üst 3790f56b
...@@ -55,12 +55,12 @@ $(call gb_JunitTest_get_target,%) : ...@@ -55,12 +55,12 @@ $(call gb_JunitTest_get_target,%) :
$(CLASSES) > $@.log 2>&1 || \ $(CLASSES) > $@.log 2>&1 || \
(cat $@.log \ (cat $@.log \
&& echo "to rerun just this failed test without all others, run:" \ && 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 "cd into the module dir to run the tests faster" \
&& echo "Or to do interactive debugging, run two shells with (Linux only):" \ && echo "Or to do interactive debugging, run two shells with (Linux only):" \
&& echo \ && echo \
&& echo " make debugrun" \ && echo " make debugrun" \
&& echo " make gb_JunitTest_DEBUGRUN=T $@" \ && echo " make gb_JunitTest_DEBUGRUN=T JunitTest_$*" \
&& echo \ && echo \
&& false)) && \ && false)) && \
rm -rf $(call gb_JunitTest_get_userdir,$*)) rm -rf $(call gb_JunitTest_get_userdir,$*))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment