Skip to content

Commit 3f288ce

Browse files
committed
remove apptests explicit gate, moved to downstream
1 parent 8dbca82 commit 3f288ce

File tree

2 files changed

+3
-16
lines changed

2 files changed

+3
-16
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
overlay: "ffde557d62fff381069838b745c31b79c90e6e2a",
2+
overlay: "9a364f9b9ae34629919679b5edefb803ad27fbb7",
33

44
// ======================================================================================================
55
//

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ def _extract_graalpython_internal_options(args):
7979
def check_vm(vm_warning=True, must_be_jvmci=False):
8080
if not SUITE_COMPILER:
8181
if must_be_jvmci:
82-
print '** Error ** : graal compiler was not found!'
82+
print('** Error ** : graal compiler was not found!')
8383
sys.exit(1)
8484

8585
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..')
8787

8888

8989
def get_jdk():
@@ -191,7 +191,6 @@ class GraalPythonTags(object):
191191
svmunit = 'python-svm-unittest'
192192
downstream = 'python-downstream'
193193
graalvm = 'python-graalvm'
194-
apptests = 'python-apptests'
195194
license = 'python-license'
196195

197196

@@ -338,18 +337,6 @@ def graalpython_gate_runner(args, tasks):
338337
llvm_home]
339338
run_python_unittests(svm_image_name, args)
340339

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-
353340
with Task('GraalPython license header update', tasks, tags=[GraalPythonTags.license]) as task:
354341
if task:
355342
python_checkcopyrights([])

0 commit comments

Comments
 (0)