@@ -79,11 +79,11 @@ def _extract_graalpython_internal_options(args):
79
79
def check_vm (vm_warning = True , must_be_jvmci = False ):
80
80
if not SUITE_COMPILER :
81
81
if must_be_jvmci :
82
- print '** Error ** : graal compiler was not found!'
82
+ print ( '** Error ** : graal compiler was not found!' )
83
83
sys .exit (1 )
84
84
85
85
if vm_warning :
86
- print '** warning ** : graal compiler was not found!! Executing using standard VM..'
86
+ print ( '** warning ** : graal compiler was not found!! Executing using standard VM..' )
87
87
88
88
89
89
def get_jdk ():
@@ -191,7 +191,6 @@ class GraalPythonTags(object):
191
191
svmunit = 'python-svm-unittest'
192
192
downstream = 'python-downstream'
193
193
graalvm = 'python-graalvm'
194
- apptests = 'python-apptests'
195
194
license = 'python-license'
196
195
197
196
@@ -338,18 +337,6 @@ def graalpython_gate_runner(args, tasks):
338
337
llvm_home ]
339
338
run_python_unittests (svm_image_name , args )
340
339
341
- with Task ('GraalPython apptests' , tasks , tags = [GraalPythonTags .apptests ]) as task :
342
- if task :
343
- apprepo = os .environ ["GRAALPYTHON_APPTESTS_REPO_URL" ]
344
- _apptest_suite = SUITE .import_suite (
345
- "graalpython-apptests" ,
346
- version = "0008fbe8fe77d3ad93d0f7f05176116937375f45" ,
347
- urlinfos = [mx .SuiteImportURLInfo (mx_urlrewrites .rewriteurl (apprepo ), "git" , mx .vc_system ("git" ))]
348
- )
349
- mx .run_mx (["-p" , _apptest_suite .dir , "sforceimports" ])
350
- mx .log (" " .join (["Running" , "mx" ] + ["-p" , _apptest_suite .dir , "graalpython-apptests" ]))
351
- mx .run_mx (["-p" , _apptest_suite .dir , "graalpython-apptests" ])
352
-
353
340
with Task ('GraalPython license header update' , tasks , tags = [GraalPythonTags .license ]) as task :
354
341
if task :
355
342
python_checkcopyrights ([])
0 commit comments