diff options
| author | 2016-11-04 14:31:20 +0100 | |
|---|---|---|
| committer | 2016-11-09 15:19:55 +0100 | |
| commit | c44f849b70dea73bc7a718e8f5f5d9abd1a543ee (patch) | |
| tree | 96b6a0b0eb775631bf6257949a76257fdc3bda0f | |
| parent | c3410ca114d30a7bb74705546778175ef888e444 (diff) | |
Remove timeout for the 570-checker-osr test
The test is failing when running on emulator or slower devices.
Timeout is not needed anymore since all architectures have support
for OSR.
Test: ./run-test --jit 570-checker-osr
Change-Id: I3e84edfef3487e154e79688b81ad62dba45f9a2f
| -rw-r--r-- | test/570-checker-osr/src/Main.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/570-checker-osr/src/Main.java b/test/570-checker-osr/src/Main.java index 8af3894b33..4de563469d 100644 --- a/test/570-checker-osr/src/Main.java +++ b/test/570-checker-osr/src/Main.java @@ -17,26 +17,6 @@ public class Main { public static void main(String[] args) { System.loadLibrary(args[0]); - Thread testThread = new Thread() { - public void run() { - performTest(); - } - }; - testThread.start(); - try { - testThread.join(20 * 1000); // 20s timeout. - } catch (InterruptedException ie) { - System.out.println("Interrupted."); - System.exit(1); - } - Thread.State state = testThread.getState(); - if (state != Thread.State.TERMINATED) { - System.out.println("Test timed out, current state: " + state); - System.exit(1); - } - } - - public static void performTest() { new SubMain(); if ($noinline$returnInt() != 53) { throw new Error("Unexpected return value"); |