accelerate failure temporarily

This commit is contained in:
Eric Vergnaud 2020-10-04 11:19:08 +08:00
parent b940648111
commit 7068d1bb0d
2 changed files with 2 additions and 2 deletions

View File

@ -218,7 +218,7 @@ before_install:
script: script:
- | - |
cd runtime-testsuite; cd runtime-testsuite;
travis_wait 40 ../.travis/run-tests-$TARGET.sh; travis_wait 4 ../.travis/run-tests-$TARGET.sh;
rc=$?; rc=$?;
cat target/surefire-reports/*.dumpstream || true; cat target/surefire-reports/*.dumpstream || true;
exit $rc exit $rc

View File

@ -318,7 +318,7 @@ public class BaseNodeTest implements RuntimeTestSupport {
process.destroyForcibly(); process.destroyForcibly();
int error = process.exitValue(); int error = process.exitValue();
if(error!=0) if(error!=0)
throw new IOException("'npm link' failed"); throw new IOException("'npm install' failed");
} }
private void registerRuntime(String npmPath) throws IOException, InterruptedException { private void registerRuntime(String npmPath) throws IOException, InterruptedException {