-
Notifications
You must be signed in to change notification settings - Fork 39
Expose test scripts for minimal/extended tests for mmtk-core #266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
.github/scripts/ci-test-minimal.sh
Outdated
export MMTK_PLAN=SemiSpace | ||
runbms_dacapo2006_with_heap_multiplier fop 4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the plan is really intended to be set for one command, only, we can use the following syntax. In this way, we will not need to unset the env var again.
export MMTK_PLAN=SemiSpace | |
runbms_dacapo2006_with_heap_multiplier fop 4 | |
MMTK_PLAN=SemiSpace runbms_dacapo2006_with_heap_multiplier fop 4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but we can use the same trick for MMTK_VO_BIT
, too.
.github/scripts/ci-test-minimal.sh
Outdated
export MMTK_VO_BIT=1 | ||
$cur/ci-build.sh | ||
unset MMTK_VO_BIT=1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can use the same trick here, too.
export MMTK_VO_BIT=1 | |
$cur/ci-build.sh | |
unset MMTK_VO_BIT=1 | |
MMTK_VO_BIT=1 $cur/ci-build.sh |
This PR removes unused workflow_dispatch for mmtk-core (see mmtk/mmtk-core#983), and adds a script to run minimal openjdk tests.