File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -112,14 +112,16 @@ JTREG_BASIC_OPTIONS += $(JTREG_IGNORE_OPTION)
112
112
# riscv64 machines aren't very fast (yet!!)
113
113
ifeq ($(ARCH ) , riscv64)
114
114
JTREG_TIMEOUT_OPTION = -timeoutFactor:16
115
- else
115
+ # aarch64 linux requires extra time, set timeoutFactor to 12
116
+ else ifneq ($(filter linux_aarch64, $(SPEC)),)
117
+ JTREG_TIMEOUT_OPTION = -timeoutFactor:12
116
118
# Multiple by 8 the timeout numbers, except on zOS use 2
117
- ifneq ($(OS ) ,OS/390)
118
- JTREG_TIMEOUT_OPTION = -timeoutFactor:8
119
- else
119
+ else ifeq ($(OS),OS/390)
120
120
JTREG_TIMEOUT_OPTION = -timeoutFactor:2
121
+ else
122
+ JTREG_TIMEOUT_OPTION = -timeoutFactor:8
121
123
endif
122
- endif
124
+
123
125
JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION )
124
126
# Create junit xml
125
127
JTREG_XML_OPTION = -xml:verify
You can’t perform that action at this time.
0 commit comments