Skip to content

Commit 6efc1be

Browse files
committed
Run dynamic object tests using core layout factory, too.
1 parent 9e510e3 commit 6efc1be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

truffle/mx.truffle/mx_truffle.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,9 @@ def _truffle_gate_runner(args, tasks):
483483
with Task('Truffle Signature Tests', tasks, tags=TruffleGateTags.sigtest) as t:
484484
if t: sigtest(['--check', 'binary'])
485485
with Task('Truffle UnitTests', tasks, tags=TruffleGateTags.truffle_test) as t:
486-
if t: unittest(list(['--suite', 'truffle', '--enable-timing', '--verbose', '--max-class-failures=25']))
486+
if t:
487+
unittest(['--suite', 'truffle', '--enable-timing', '--verbose', '--max-class-failures=25'])
488+
unittest(['--suite', 'truffle', '--enable-timing', '-Dtruffle.object.LayoutFactory=com.oracle.truffle.api.object.CoreLayoutFactory', 'com.oracle.truffle.object'])
487489
if jdk.javaCompliance >= '22':
488490
with Task('Truffle NFI tests with Panama Backend', tasks, tags=TruffleGateTags.panama_test) as t:
489491
if t:

0 commit comments

Comments
 (0)