< prev index next >

make/test/BuildFailureHandler.gmk

Print this page

        

*** 59,69 **** TARGETS += $(BUILD_FAILURE_HANDLER) ################################################################################ ! ifeq ($(OPENJDK_TARGET_OS), windows) $(eval $(call SetupNativeCompilation, BUILD_LIBTIMEOUT_HANDLER, \ NAME := timeoutHandler, \ SRC := $(FH_BASEDIR)/src/windows/native/libtimeoutHandler, \ OBJECT_DIR := $(FH_SUPPORT)/libtimeoutHandler, \ --- 59,69 ---- TARGETS += $(BUILD_FAILURE_HANDLER) ################################################################################ ! ifeq ($(call isTargetOs, windows), true) $(eval $(call SetupNativeCompilation, BUILD_LIBTIMEOUT_HANDLER, \ NAME := timeoutHandler, \ SRC := $(FH_BASEDIR)/src/windows/native/libtimeoutHandler, \ OBJECT_DIR := $(FH_SUPPORT)/libtimeoutHandler, \
*** 97,107 **** # Use JTREG_TEST_OPTS for test VM options # Use JTREG_TESTS for jtreg tests parameter # RUN_DIR := $(FH_SUPPORT)/test # Add the dir of the dll to the path on windows ! ifeq ($(OPENJDK_TARGET_OS), windows) export PATH := $(PATH);$(FH_SUPPORT) endif test: $(RM) -r $(RUN_DIR) --- 97,107 ---- # Use JTREG_TEST_OPTS for test VM options # Use JTREG_TESTS for jtreg tests parameter # RUN_DIR := $(FH_SUPPORT)/test # Add the dir of the dll to the path on windows ! ifeq ($(call isTargetOs, windows), true) export PATH := $(PATH);$(FH_SUPPORT) endif test: $(RM) -r $(RUN_DIR)
< prev index next >