changeset 22707:829a9e1ccf23

mx: exclude JVMCI jars from unit test class path
author Doug Simon <doug.simon@oracle.com>
date Sun, 25 Oct 2015 10:49:26 +0100
parents 5cae0a06ca7d
children 8017f84cce74
files mx.jvmci/mx_jvmci.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Fri Oct 23 10:10:17 2015 -0700
+++ b/mx.jvmci/mx_jvmci.py	Sun Oct 25 10:49:26 2015 +0100
@@ -1133,6 +1133,7 @@
             for jdkDist in jdkDeployedDists:
                 dist = jdkDist.dist()
                 excluded.update([d.output_dir() for d in dist.archived_deps() if d.isJavaProject()])
+                excluded.add(dist.path)
             cp = os.pathsep.join([e for e in cp.split(os.pathsep) if e not in excluded])
             vmArgs[cpIndex] = cp