accelerate failure temporarily
This commit is contained in:
parent
b940648111
commit
7068d1bb0d
|
@ -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
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue