Skip to content

Commit

Permalink
Adopt new compiler options.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Sep 20, 2023
1 parent 49739af commit a71a28d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,5 +201,5 @@ jobs:
- name: Run Cuis-Smalltalk tests on TruffleSqueak standalone
run: |
mx.trufflesqueak/utils.sh download-cuis-test-image
trufflesqueak --vm.ea --vm.esa --headless --experimental-options --smalltalk.resource-summary=true --engine.CompilationFailureAction=ExitVM --engine.TreatPerformanceWarningsAsErrors=call,instanceof,store,trivial --engine.CompilationStatistics images/Cuis6.0-????.image -s src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/runCuisTests.st
trufflesqueak --vm.ea --vm.esa --headless --experimental-options --smalltalk.resource-summary=true --compiler.TreatPerformanceWarningsAsErrors=call,instanceof,store,trivial --engine.CompilationFailureAction=ExitVM --engine.CompilationStatistics images/Cuis6.0-????.image -s src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/runCuisTests.st
if: ${{ matrix.os == 'ubuntu-20.04' }}
2 changes: 1 addition & 1 deletion mx.trufflesqueak/mx_trufflesqueak.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ def _add_unit_tests(tasks, supports_coverage):
'--color', '--enable-timing'])
if _COMPILER:
unittest_args.extend(['-Dgraal.CompilationFailureAction=ExitVM',
'-Dpolyglot.compiler.TreatPerformanceWarningsAsErrors=call,instanceof,store,trivial',
'-Dpolyglot.engine.CompilationFailureAction=ExitVM',
'-Dpolyglot.engine.TreatPerformanceWarningsAsErrors=call,instanceof,store,trivial',
'-Dpolyglot.engine.CompilationStatistics=true'])

# Ensure Truffle TCK disabled (workaround needed since GraalVM 19.2.0)
Expand Down

0 comments on commit a71a28d

Please sign in to comment.