@@ -276,7 +276,6 @@ class GraalPythonTags(object):
276
276
benchmarks = 'python-benchmarks'
277
277
downstream = 'python-downstream'
278
278
graalvm = 'python-graalvm'
279
- R = 'python-R'
280
279
apptests = 'python-apptests'
281
280
license = 'python-license'
282
281
@@ -414,30 +413,6 @@ def is_included(path):
414
413
test_args = ["graalpython/com.oracle.graal.python.test/src/graalpytest.py" , "-v" ] + testfiles
415
414
mx .run (["./graalpython-svm" , "--python.CoreHome=graalpython/lib-graalpython" , "--python.StdLibHome=graalpython/lib-python/3" , langhome ] + test_args , nonZeroIsFatal = True )
416
415
417
- with Task ('GraalPython downstream R tests' , tasks , tags = [GraalPythonTags .downstream , GraalPythonTags .R ]) as task :
418
- script_r2p = os .path .join (_suite .dir , "graalpython" , "benchmarks" , "src" , "benchmarks" , "interop" , "r_python_image_demo.r" )
419
- script_p2r = os .path .join (_suite .dir , "graalpython" , "benchmarks" , "src" , "benchmarks" , "interop" , "python_r_image_demo.py" )
420
- pythonjars = os .pathsep .join ([
421
- os .path .join (_suite .dir , "mxbuild" , "dists" , "graalpython.jar" ),
422
- os .path .join (_suite .dir , "mxbuild" , "dists" , "graalpython-env.jar" )
423
- ])
424
- if task :
425
- rrepo = os .environ ["FASTR_REPO_URL" ]
426
- testdownstream (
427
- _suite ,
428
- [rrepo , mx .suite ("truffle" ).vc ._remote_url (mx .suite ("truffle" ).dir , "origin" )],
429
- "." ,
430
- [["--dynamicimports" , "graalpython" , "--version-conflict-resolution" , "latest_all" , "build" , "--force-deprecation-as-warning" ],
431
- ["--cp-sfx" , pythonjars , "r" , "--polyglot" , "--file=%s" % script_r2p ]
432
- ])
433
- testdownstream (
434
- _suite ,
435
- [rrepo , mx .suite ("truffle" ).vc ._remote_url (mx .suite ("truffle" ).dir , "origin" )],
436
- "." ,
437
- [["--dynamicimports" , "graalpython" , "--version-conflict-resolution" , "latest_all" , "build" , "--force-deprecation-as-warning" ],
438
- ["-v" , "--cp-sfx" , pythonjars , "r" , "--jvm" , "--polyglot" , "-e" , "eval.polyglot('python', path='%s')" % str (script_p2r )]
439
- ])
440
-
441
416
with Task ('GraalPython apptests' , tasks , tags = [GraalPythonTags .apptests ]) as task :
442
417
if task :
443
418
apprepo = os .environ ["GRAALPYTHON_APPTESTS_REPO_URL" ]
0 commit comments