diff mx/mx_graal.py @ 21635:b311a60991da

more graceful failure in context of stale mx-deployed JDK jars
author Doug Simon <doug.simon@oracle.com>
date Mon, 01 Jun 2015 15:01:34 +0200
parents abcb811659e0
children e65bf81961be
line wrap: on
line diff
--- a/mx/mx_graal.py	Mon Jun 01 15:24:37 2015 +0200
+++ b/mx/mx_graal.py	Mon Jun 01 15:01:34 2015 +0200
@@ -555,7 +555,7 @@
     """
     _, binDir = mx._compile_mx_class('FilterTypes', os.pathsep.join(classpath), myDir=dirname(__file__))
     cmd = [mx.java().java, '-cp', mx._cygpathU2W(os.pathsep.join([binDir] + classpath)), 'FilterTypes', 'com.oracle.jvmci.service.Service'] + serviceImplNames
-    services = subprocess.check_output(cmd, stderr=subprocess.PIPE)
+    services = subprocess.check_output(cmd)
     if len(services) == 0:
         return []
     return services.split('|')