changeset 22281:2333f2f5baed

Fixes for new jdkDeployedDists model in _unittest_config_participant
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Wed, 22 Jul 2015 16:42:10 +0200
parents ac5551e3ff9c
children 9ab88ee1f79f
files mx.jvmci/mx_jvmci.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Wed Jul 22 14:00:36 2015 +0200
+++ b/mx.jvmci/mx_jvmci.py	Wed Jul 22 16:42:10 2015 +0200
@@ -1085,7 +1085,7 @@
         if cp:
             excluded = set()
             for jdkDist in jdkDeployedDists:
-                dist = mx.distribution(jdkDist.name)
+                dist = jdkDist.dist()
                 excluded.update([d.output_dir() for d in dist.archived_deps() if d.isJavaProject()])
             cp = os.pathsep.join([e for e in cp.split(os.pathsep) if e not in excluded])
             vmArgs[cpIndex] = cp