Skip to content

Commit c09167d

Browse files
committed
8373113: Fix whitespace in RunTests.gmk
Reviewed-by: tbell
1 parent 674cc3e commit c09167d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

make/RunTests.gmk

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -873,16 +873,16 @@ define SetupRunJtregTestBody
873873
$1_JTREG_BASIC_OPTIONS += -testThreadFactoryPath:$$(JTREG_TEST_THREAD_FACTORY_JAR)
874874
$1_JTREG_BASIC_OPTIONS += -testThreadFactory:$$(JTREG_TEST_THREAD_FACTORY)
875875
$1_JTREG_BASIC_OPTIONS += $$(addprefix $$(JTREG_PROBLEM_LIST_PREFIX), $$(wildcard \
876-
$$(addprefix $$($1_TEST_ROOT)/, ProblemList-$$(JTREG_TEST_THREAD_FACTORY).txt) \
876+
$$(addprefix $$($1_TEST_ROOT)/, ProblemList-$$(JTREG_TEST_THREAD_FACTORY).txt) \
877877
))
878878
endif
879879

880880
ifneq ($$(JTREG_JVMTI_STRESS_AGENT), )
881881
AGENT := $$(LIBRARY_PREFIX)JvmtiStressAgent$$(SHARED_LIBRARY_SUFFIX)=$$(JTREG_JVMTI_STRESS_AGENT)
882882
$1_JTREG_BASIC_OPTIONS += -javaoption:'-agentpath:$(TEST_IMAGE_DIR)/hotspot/jtreg/native/$$(AGENT)'
883883
$1_JTREG_BASIC_OPTIONS += $$(addprefix $$(JTREG_PROBLEM_LIST_PREFIX), $$(wildcard \
884-
$$(addprefix $$($1_TEST_ROOT)/, ProblemList-jvmti-stress-agent.txt) \
885-
))
884+
$$(addprefix $$($1_TEST_ROOT)/, ProblemList-jvmti-stress-agent.txt) \
885+
))
886886
endif
887887

888888

@@ -1092,7 +1092,7 @@ define SetupRunJtregTestBody
10921092
$$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR) \
10931093
$$($1_TEST_TMP_DIR))
10941094
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/jtreg, \
1095-
$$(COV_ENVIRONMENT) $$($1_COMMAND_LINE) \
1095+
$$(COV_ENVIRONMENT) $$($1_COMMAND_LINE) \
10961096
)
10971097

10981098
$1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/text/stats.txt
@@ -1102,11 +1102,11 @@ define SetupRunJtregTestBody
11021102
$$(call LogWarn, Test report is stored in $$(strip \
11031103
$$(subst $$(TOPDIR)/, , $$($1_TEST_RESULTS_DIR))))
11041104

1105-
# Read jtreg documentation to learn on the test stats categories:
1106-
# https://github.com/openjdk/jtreg/blob/master/src/share/doc/javatest/regtest/faq.md#what-do-all-those-numbers-in-the-test-results-line-mean
1107-
# In jtreg, "skipped:" category accounts for tests that threw jtreg.SkippedException at runtime.
1108-
# At the same time these tests contribute to "passed:" tests.
1109-
# In here we don't want that and so we substract number of "skipped:" from "passed:".
1105+
# Read jtreg documentation to learn on the test stats categories:
1106+
# https://github.com/openjdk/jtreg/blob/master/src/share/doc/javatest/regtest/faq.md#what-do-all-those-numbers-in-the-test-results-line-mean
1107+
# In jtreg, "skipped:" category accounts for tests that threw jtreg.SkippedException at runtime.
1108+
# At the same time these tests contribute to "passed:" tests.
1109+
# In here we don't want that and so we substract number of "skipped:" from "passed:".
11101110

11111111
$$(if $$(wildcard $$($1_RESULT_FILE)), \
11121112
$$(eval $1_PASSED_AND_RUNTIME_SKIPPED := $$(shell $$(AWK) '{ gsub(/[,;]/, ""); \

0 commit comments

Comments
 (0)