add debug hook for junit tests
This commit is contained in:
parent
05add37b0a
commit
7602f5d313
1 changed files with 9 additions and 1 deletions
|
@ -47,7 +47,15 @@ $(call gb_JunitTest_get_target,%) :
|
|||
$(call gb_Output_announce,$*,$(true),JUT,2)
|
||||
$(call gb_Helper_abbreviate_dirs_native,\
|
||||
mkdir -p $(call gb_JunitTest_get_userdir,$*) && \
|
||||
$(gb_JunitTest_JAVACOMMAND) -cp "$(CLASSPATH)" $(if $(strip $(gb_JunitTest_HEADLESS)),-Dorg.openoffice.test.arg.headless=$(gb_JunitTest_HEADLESS)) $(DEFS) org.junit.runner.JUnitCore $(CLASSES) 2>&1 > $@.log || (cat $@.log && false))
|
||||
$(gb_JunitTest_JAVACOMMAND) \
|
||||
-cp "$(CLASSPATH)" \
|
||||
$(if $(strip $(gb_JunitTest_HEADLESS)),\
|
||||
-Dorg.openoffice.test.arg.headless=$(gb_JunitTest_HEADLESS)) \
|
||||
$(if $(strip $(gb_JunitTest_DEBUGCOMMAND)),\
|
||||
'-Dorg.openoffice.test.arg.debugcommand=$(gb_JunitTest_DEBUGCOMMAND)') \
|
||||
$(DEFS) \
|
||||
org.junit.runner.JUnitCore \
|
||||
$(CLASSES) 2>&1 > $@.log || (cat $@.log && false))
|
||||
$(CLEAN_CMD)
|
||||
|
||||
define gb_JunitTest_JunitTest
|
||||
|
|
Loading…
Reference in a new issue