jdk/test/Makefile
changeset 42184 6965d53e507c
parent 42097 ffbf2dfa8a35
child 42439 ccef74161219
equal deleted inserted replaced
42183:6b4cdd4a4609 42184:6965d53e507c
    53 SORT      = sort
    53 SORT      = sort
    54 TEE       = tee
    54 TEE       = tee
    55 UNAME     = uname
    55 UNAME     = uname
    56 UNIQ      = uniq
    56 UNIQ      = uniq
    57 WC        = wc
    57 WC        = wc
    58 ZIP       = zip
    58 ZIPEXE    = zip
    59 
    59 
    60 # Get OS name from uname (Cygwin inexplicably adds _NT-5.1)
    60 # Get OS name from uname (Cygwin inexplicably adds _NT-5.1)
    61 UNAME_S := $(shell $(UNAME) -s | $(CUT) -f1 -d_)
    61 UNAME_S := $(shell $(UNAME) -s | $(CUT) -f1 -d_)
    62 
    62 
    63 # Commands to run on paths to make mixed paths for java on windows
    63 # Commands to run on paths to make mixed paths for java on windows
   160 # How to create the test bundle (pass or fail, we want to create this)
   160 # How to create the test bundle (pass or fail, we want to create this)
   161 #   Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
   161 #   Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
   162 ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`     \
   162 ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`     \
   163 	           && $(CD) $(ABS_TEST_OUTPUT_DIR)             \
   163 	           && $(CD) $(ABS_TEST_OUTPUT_DIR)             \
   164 	           && $(CHMOD) -R a+r . \
   164 	           && $(CHMOD) -R a+r . \
   165 	           && $(ZIP) -q -r $(ARCHIVE_BUNDLE) . )
   165 	           && $(ZIPEXE) -q -r $(ARCHIVE_BUNDLE) . )
   166 
   166 
   167 # important results files
   167 # important results files
   168 SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport/text/summary.txt")
   168 SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport/text/summary.txt")
   169 STATS_TXT_NAME = Stats.txt
   169 STATS_TXT_NAME = Stats.txt
   170 STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/$(STATS_TXT_NAME)")
   170 STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/$(STATS_TXT_NAME)")