Skip to content

Commit b77e0b9

Browse files
authored
Fix a typo in run_all_no_compressed_oop (#306)
This function should take one argument, but it used $2 instead. In previous runs, invocations of run_all_no_compressed_oop have failed silently without making the GitHub-level CI test case `ci-test-only-normal-no-compressed-oops` fail. This PR fixes the typo.
1 parent 8f7bf0a commit b77e0b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/ci-test-only-normal-no-compressed-oops.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -xe
55
unset JAVA_TOOL_OPTIONS
66

77
run_all_no_compressed_oop() {
8-
heap_multiplier=$2
8+
heap_multiplier=$1
99

1010
runbms_dacapo2006_with_heap_multiplier antlr $heap_multiplier -XX:-UseCompressedOops -XX:-UseCompressedClassPointers
1111
runbms_dacapo2006_with_heap_multiplier fop $heap_multiplier -XX:-UseCompressedOops -XX:-UseCompressedClassPointers

0 commit comments

Comments
 (0)