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:
- |
cd runtime-testsuite;
travis_wait 40 ../.travis/run-tests-$TARGET.sh;
travis_wait 4 ../.travis/run-tests-$TARGET.sh;
rc=$?;
cat target/surefire-reports/*.dumpstream || true;
exit $rc

View File

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