Commit 5f48a8a
authored
Properly handle multiple plans in GITHUB-CI in CI scripts (#1301)
The PR fixes an issue in our CI script. We sometimes want to run a test
with multiple plans, such as `GITHUB-CI: MMTK_PLAN=NoGC,SemiSpace`. The
CI script does not parse `MMTK_PLAN`, and It instead just set the entire
string as the env var (`MMTK_PLAN=NoGC,SemiSpace`). This results in an
invalid value for `MMTK_PLAN`, and the default plan is used.1 parent 973bd02 commit 5f48a8a
File tree
2 files changed
+3
-2
lines changed- .github/scripts
- src/vm/tests/mock_tests
2 files changed
+3
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| 2 | + | |
2 | 3 | | |
3 | 4 | | |
4 | 5 | | |
| |||
0 commit comments