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():
190190
191191
192192def 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
17311728orig_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
You can’t perform that action at this time.
0 commit comments