diff mx.jvmci/mx_jvmci.py @ 22732:b2ffe9891356

In 'def run_java()' add missing forwarding of timeout argument
author Paul Woegerer <paul.woegerer@oracle.com>
date Thu, 12 Nov 2015 12:12:38 +0100
parents e00426c54952
children a130b51efb07
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Wed Nov 11 18:34:15 2015 +0100
+++ b/mx.jvmci/mx_jvmci.py	Thu Nov 12 12:12:38 2015 +0100
@@ -1835,7 +1835,7 @@
 
         pfx = _vm_prefix.split() if _vm_prefix is not None else []
         cmd = pfx + [self.java] + ['-' + vm] + args
-        return mx.run(cmd, nonZeroIsFatal=nonZeroIsFatal, out=out, err=err, cwd=cwd)
+        return mx.run(cmd, nonZeroIsFatal=nonZeroIsFatal, out=out, err=err, cwd=cwd, timeout=timeout)
 
 """
 The dict of JVMCI JDKs indexed by vmbuild names.