Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8302152: Speed up tests with infinite loops, sleep less #12514

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -67,6 +67,6 @@ public void run() {
// Give thread some time to trigger compilation
thread.setDaemon(true);
thread.start();
Thread.sleep(Utils.adjustTimeout(4000));
Thread.sleep(Utils.adjustTimeout(500));
}
}
Expand Up @@ -67,6 +67,6 @@ public void run() {
thread.setDaemon(true);
thread.start();
// Give thread some time to trigger compilation
Thread.sleep(Utils.adjustTimeout(5000));
Thread.sleep(Utils.adjustTimeout(500));
}
}
Expand Up @@ -72,6 +72,6 @@ public void run() {
// Give thread some time to trigger compilation
thread.setDaemon(true);
thread.start();
Thread.sleep(Utils.adjustTimeout(4000));
Thread.sleep(Utils.adjustTimeout(500));
}
}
Expand Up @@ -65,7 +65,7 @@ public void run() {
// Give thread some time to trigger compilation
thread.setDaemon(true);
thread.start();
Thread.sleep(Utils.adjustTimeout(4000));
Thread.sleep(Utils.adjustTimeout(500));
}

static Boolean b;
Expand Down
Expand Up @@ -47,6 +47,6 @@ public void run() {
thread.setDaemon(true);
thread.start();
// Give thread executing strange control loop enough time to trigger OSR compilation
Thread.sleep(Utils.adjustTimeout(4000));
Thread.sleep(Utils.adjustTimeout(1000));
}
}