Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions settings.mk
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,21 @@ endif

TESTNG=$(LIB_DIR)$(D)testng.jar$(P)$(LIB_DIR)$(D)jcommander.jar
RESOURCES_DIR=$(JVM_TEST_ROOT)$(D)TestConfig$(D)resources
ifdef CUSTOM_JTREG_HOME
JTREG_HOME=$(CUSTOM_JTREG_HOME)
$(ECHO) "Custom jtreg home declared: $(JTREG_HOME)"
else
JTREG_HOME=$(TEST_RESROOT)$(D)jtreg
$(ECHO) "Using standart jtreg home: $(JTREG_HOME)"
endif
ifdef CUSTOM_JTREG_JAR
JTREG_JAR=$(CUSTOM_JTREG_JAR)
$(ECHO) "Custom jtreg jar declared: $(JTREG_JAR)"
else
JTREG_JAR=$(JTREG_HOME)$(D)lib$(D)jtreg.jar
$(ECHO) "Using standart jtreg jar: $(JTREG_JAR)"
endif

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


#######################################
# cmdlinetester jars
Expand Down