Skip to content

Commit d9da06b

Browse files
committed
remove engine options from junit run
1 parent 3a9588d commit d9da06b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,6 @@ def _dev_pythonhome():
190190

191191

192192
def punittest(ars):
193-
args = ["-Dpolyglot.engine.CompilationExceptionsAreFatal=false"
194-
"-Dpolyglot.engine.PerformanceWarningsAreFatal=false",
195-
"-Dpolyglot.engine.CompilationExceptionsArePrinted=true"]
196193
if "--regex" not in ars:
197194
args += ['--regex', r'(graal\.python)|(com\.oracle\.truffle\.tck\.tests)']
198195
args += ars
@@ -1729,14 +1726,14 @@ def checkout_find_version_for_graalvm(args):
17291726
break
17301727

17311728
orig_clean = mx.command_function("clean")
1732-
def python_clean(args):
1729+
def python_clean(args):
17331730
orig_clean(args)
17341731
count = 0;
17351732
for path in os.walk(SUITE.dir):
17361733
for file in glob.iglob(os.path.join(path[0], '*.pyc')):
17371734
count += 1
17381735
os.remove(file)
1739-
1736+
17401737
if count > 0:
17411738
print ('Cleaning', count, "`*.pyc` files...")
17421739

0 commit comments

Comments
 (0)