Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/scripts/ci-test-large-heap.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
set -xe

. $(dirname "$0")/common.sh

# With a heap size larger than 4G, OpenJDK encodes compressed pointers differently.
# Run a few plans with heap size larger than 4G.

MMTK_PLAN=Immix runbms_dacapo2006_with_heap_size fop 20 8000
MMTK_PLAN=GenImmix runbms_dacapo2006_with_heap_size fop 20 8000
MMTK_PLAN=StickyImmix runbms_dacapo2006_with_heap_size fop 20 8000
MMTK_PLAN=GenCopy runbms_dacapo2006_with_heap_size fop 20 8000
MMTK_PLAN=MarkCompact runbms_dacapo2006_with_heap_size fop 20 8000
MMTK_PLAN=MarkSweep runbms_dacapo2006_with_heap_size fop 20 8000
6 changes: 5 additions & 1 deletion .github/workflows/run-dacapo-2006.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ jobs:
strategy:
fail-fast: false
matrix:
test-script: ["ci-test-only-normal", "ci-test-only-normal-no-compressed-oops", "ci-test-only-weak-ref"]
test-script:
- ci-test-only-normal
- ci-test-only-normal-no-compressed-oops
- ci-test-only-weak-ref
- ci-test-large-heap
steps:
# We need to check out the binding repo to get the running configs and test scripts
- name: Checkout MMTk OpenJDK binding
Expand Down
Loading