X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=7ad6f9965e560830bad4e1a2afa2f9cf72f4cf31;hb=refs%2Fheads%2Ffeatures%2Fr2_11_2_alphafold%2FJAL-629;hp=a47a7fdefd7d58db60806efb9df4c8227159586e;hpb=ee6877a44862ab0dcdd1b7096bfa113d6196fb5a;p=jalview.git diff --git a/build.gradle b/build.gradle index a47a7fd..7ad6f99 100644 --- a/build.gradle +++ b/build.gradle @@ -4256,7 +4256,7 @@ task jalviewjsLaunchTest { def stdout def stderr doFirst { - def timeoutms = Integer.valueOf(jalviewjs_chromium_timeout) * 1000 + def timeoutms = Integer.valueOf(jalviewjs_chromium_overall_timeout) * 1000 def binary = file(chromiumBinary) if (!binary.exists()) { @@ -4299,6 +4299,7 @@ task jalviewjsLaunchTest { errorOutput = execStderr executable(chromiumBinary) args(execArgs) + println "COMMAND: '"+commandLine.join(" ")+"'" } executor.shutdownNow() } @@ -4316,7 +4317,7 @@ task jalviewjsLaunchTest { executor.shutdownNow() } // if no change in stderr for 10s then also end - if (noChangeIterations >= 10) { + if (noChangeIterations >= jalviewjs_chromium_idle_timeout) { executor.shutdownNow() } if (stderrString.length() == noChangeBytes) {