changeset 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 372cb6e59b0d
children 732763293625
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 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.