You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #90 in G/mx from fix/more-jdk9-adjustments to master
* commit '0273dda510caabbe6dc55a2fc2d86401d463814e':
bootclasspath is empty string on jdk >= 9 handle new 2 arg JVM options when partitioning command line args
self._bootclasspath, self._extdirs, self._endorseddirs = [x if x != 'null' else None for x in subprocess.check_output([self.java, '-cp', _cygpathU2W(binDir), 'ClasspathDump'], stderr=subprocess.PIPE).split('|')]
8211
8212
if self.javaCompliance <= JavaCompliance('1.8'):
8213
+
self._bootclasspath, self._extdirs, self._endorseddirs = [x if x != 'null' else None for x in subprocess.check_output([self.java, '-cp', _cygpathU2W(binDir), 'ClasspathDump'], stderr=subprocess.PIPE).split('|')]
8212
8214
# All 3 system properties accessed by ClasspathDump are expected to exist
8213
8215
if not self._bootclasspath or not self._extdirs or not self._endorseddirs:
8214
8216
warn("Could not find all classpaths: boot='" + str(self._bootclasspath) + "' extdirs='" + str(self._extdirs) + "' endorseddirs='" + str(self._endorseddirs) + "'")
0 commit comments