Skip to content

Commit 29348b3

Browse files
committedSep 28, 2023
8316894: make test TEST="jtreg:test/jdk/..." fails on AIX
Reviewed-by: ihse, erikj
1 parent 3f19df6 commit 29348b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎make/RunTests.gmk

+2-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ ifeq ($(TEST_JOBS), 0)
178178
c = c * $(TEST_JOBS_FACTOR_JDL); \
179179
c = c * $(TEST_JOBS_FACTOR_MACHINE); \
180180
if (c < 1) c = 1; \
181-
printf "%.0f", c; \
181+
c = c + 0.5; \
182+
printf "%d", c; \
182183
}')
183184
endif
184185

0 commit comments

Comments
 (0)