JAVA-27357 Improve core-java-os build time
This commit is contained in:
parent
dfb560b277
commit
c8973d8cf3
|
@ -23,7 +23,7 @@ public class AppUnitTest {
|
||||||
soundRecorder.build(af);
|
soundRecorder.build(af);
|
||||||
try {
|
try {
|
||||||
soundRecorder.start();
|
soundRecorder.start();
|
||||||
Thread.sleep(20000);
|
Thread.sleep(5000);
|
||||||
soundRecorder.stop();
|
soundRecorder.stop();
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
fail("Exception: " + ex);
|
fail("Exception: " + ex);
|
||||||
|
|
|
@ -69,7 +69,7 @@ public class ProcessApiUnitTest {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
Thread.sleep(10000);
|
Thread.sleep(5000);
|
||||||
|
|
||||||
childProc = ProcessHandle.current().children();
|
childProc = ProcessHandle.current().children();
|
||||||
childProc.forEach(procHandle -> {
|
childProc.forEach(procHandle -> {
|
||||||
|
@ -100,7 +100,7 @@ public class ProcessApiUnitTest {
|
||||||
private void waistCPU() throws NoSuchAlgorithmException {
|
private void waistCPU() throws NoSuchAlgorithmException {
|
||||||
ArrayList<Integer> randArr = new ArrayList<Integer>(4096);
|
ArrayList<Integer> randArr = new ArrayList<Integer>(4096);
|
||||||
SecureRandom sr = SecureRandom.getInstanceStrong();
|
SecureRandom sr = SecureRandom.getInstanceStrong();
|
||||||
Duration somecpu = Duration.ofMillis(4200L);
|
Duration somecpu = Duration.ofMillis(2000L);
|
||||||
Instant end = Instant.now().plus(somecpu);
|
Instant end = Instant.now().plus(somecpu);
|
||||||
while (Instant.now().isBefore(end)) {
|
while (Instant.now().isBefore(end)) {
|
||||||
// System.out.println(sr.nextInt());
|
// System.out.println(sr.nextInt());
|
||||||
|
|
Loading…
Reference in New Issue