File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -190,9 +190,6 @@ def _dev_pythonhome():
190
190
191
191
192
192
def punittest (ars ):
193
- args = ["-Dpolyglot.engine.CompilationExceptionsAreFatal=false"
194
- "-Dpolyglot.engine.PerformanceWarningsAreFatal=false" ,
195
- "-Dpolyglot.engine.CompilationExceptionsArePrinted=true" ]
196
193
if "--regex" not in ars :
197
194
args += ['--regex' , r'(graal\.python)|(com\.oracle\.truffle\.tck\.tests)' ]
198
195
args += ars
@@ -1729,14 +1726,14 @@ def checkout_find_version_for_graalvm(args):
1729
1726
break
1730
1727
1731
1728
orig_clean = mx .command_function ("clean" )
1732
- def python_clean (args ):
1729
+ def python_clean (args ):
1733
1730
orig_clean (args )
1734
1731
count = 0 ;
1735
1732
for path in os .walk (SUITE .dir ):
1736
1733
for file in glob .iglob (os .path .join (path [0 ], '*.pyc' )):
1737
1734
count += 1
1738
1735
os .remove (file )
1739
-
1736
+
1740
1737
if count > 0 :
1741
1738
print ('Cleaning' , count , "`*.pyc` files..." )
1742
1739
You can’t perform that action at this time.
0 commit comments