File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 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)
112112# riscv64 machines aren't very fast (yet!!)
113113ifeq ($(ARCH ) , riscv64)
114114 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
116118# 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)
120120 JTREG_TIMEOUT_OPTION = -timeoutFactor:2
121+ else
122+ JTREG_TIMEOUT_OPTION = -timeoutFactor:8
121123endif
122- endif
124+
123125JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION )
124126# Create junit xml
125127JTREG_XML_OPTION = -xml:verify
You can’t perform that action at this time.
0 commit comments