equal
deleted
inserted
replaced
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 |
128 # How to create the test bundle (pass or fail, we want to create this) |
128 # How to create the test bundle (pass or fail, we want to create this) |
129 # Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed. |
129 # Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed. |
130 ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)` \ |
130 ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)` \ |
131 && $(CD) $(ABS_TEST_OUTPUT_DIR) \ |
131 && $(CD) $(ABS_TEST_OUTPUT_DIR) \ |
132 && $(CHMOD) -R a+r . \ |
132 && $(CHMOD) -R a+r . \ |
133 && $(ZIP) -q -r $(ARCHIVE_BUNDLE) . ) |
133 && $(ZIPEXE) -q -r $(ARCHIVE_BUNDLE) . ) |
134 |
134 |
135 # important results files |
135 # important results files |
136 SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport/text/summary.txt") |
136 SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport/text/summary.txt") |
137 STATS_TXT_NAME = Stats.txt |
137 STATS_TXT_NAME = Stats.txt |
138 STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/$(STATS_TXT_NAME)") |
138 STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/$(STATS_TXT_NAME)") |