Skip to content

Commit 1fdaf25

Browse files
committedMar 1, 2023
8303133: Update ProcessTools.startProcess(...) to exit early if process exit before linePredicate is printed.
Reviewed-by: dholmes, rriggs
1 parent 65da2c5 commit 1fdaf25

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed
 

‎test/lib/jdk/test/lib/process/ProcessTools.java

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -216,15 +216,23 @@ protected void processLine(String line) {
216216

217217
try {
218218
if (timeout > -1) {
219-
if (timeout == 0) {
220-
latch.await();
221-
} else {
222-
if (!latch.await(Utils.adjustTimeout(timeout), unit)) {
219+
// Every second check if line is printed and if process is still alive
220+
Utils.waitForCondition(() -> latch.getCount() == 0 || !p.isAlive(),
221+
unit.toMillis(Utils.adjustTimeout(timeout)), 1000);
222+
223+
if (latch.getCount() > 0) {
224+
if (!p.isAlive()) {
225+
// Give some extra time for the StreamPumper to run after the process completed
226+
Thread.sleep(1000);
227+
if (latch.getCount() > 0) {
228+
throw new RuntimeException("Started process " + name + " terminated before producing the expected output.");
229+
}
230+
} else {
223231
throw new TimeoutException();
224232
}
225233
}
226234
}
227-
} catch (TimeoutException | InterruptedException e) {
235+
} catch (TimeoutException | RuntimeException | InterruptedException e) {
228236
System.err.println("Failed to start a process (thread dump follows)");
229237
for (Map.Entry<Thread, StackTraceElement[]> s : Thread.getAllStackTraces().entrySet()) {
230238
printStack(s.getKey(), s.getValue());

‎test/lib/jdk/test/lib/thread/ProcessThread.java

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -150,16 +150,21 @@ public ProcessRunnable(ProcessBuilder pb, String name, Predicate<String> waitfor
150150
*/
151151
@Override
152152
public void xrun() throws Throwable {
153-
this.process = ProcessTools.startProcess(name, processBuilder, waitfor);
154-
// Release when process is started
155-
latch.countDown();
153+
try {
154+
this.process = ProcessTools.startProcess(name, processBuilder, waitfor);
155+
} catch (Throwable t) {
156+
System.out.println(String.format("ProcessThread[%s] failed: %s", name, t.toString()));
157+
throw t;
158+
} finally {
159+
// Release when process is started or failed
160+
latch.countDown();
161+
}
156162

157-
// Will block...
158163
try {
159-
this.process.waitFor();
160164
output = new OutputAnalyzer(this.process);
165+
// Will block...
166+
this.process.waitFor();
161167
} catch (Throwable t) {
162-
String name = Thread.currentThread().getName();
163168
System.out.println(String.format("ProcessThread[%s] failed: %s", name, t.toString()));
164169
throw t;
165170
} finally {

0 commit comments

Comments
 (0)
Please sign in to comment.