Skip to content

Commit 5bbc8d3

Browse files
author
Alex Menkov
committedOct 29, 2021
8274621: NullPointerException because listenAddress[0] is null
Reviewed-by: sspitsyn, lmesnik, cjplummer
1 parent 5021a12 commit 5bbc8d3

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed
 

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

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2021, 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
@@ -116,12 +116,12 @@ public static Process startProcess(String name,
116116
* <span>The default redirects of STDOUT and STDERR are started</span>
117117
* <p>
118118
* It is possible to wait for the process to get to a warmed-up state
119-
* via {@linkplain Predicate} condition on the STDOUT
119+
* via {@linkplain Predicate} condition on the STDOUT/STDERR
120120
* </p>
121121
*
122122
* @param name The process name
123123
* @param processBuilder The process builder
124-
* @param linePredicate The {@linkplain Predicate} to use on the STDOUT
124+
* @param linePredicate The {@linkplain Predicate} to use on the STDOUT and STDERR.
125125
* Used to determine the moment the target app is
126126
* properly warmed-up.
127127
* It can be null - in that case the warmup is skipped.
@@ -146,14 +146,14 @@ public static Process startProcess(String name,
146146
* <span>The default redirects of STDOUT and STDERR are started</span>
147147
* <p>
148148
* It is possible to wait for the process to get to a warmed-up state
149-
* via {@linkplain Predicate} condition on the STDOUT and monitor the
149+
* via {@linkplain Predicate} condition on the STDOUT/STDERR and monitor the
150150
* in-streams via the provided {@linkplain Consumer}
151151
* </p>
152152
*
153153
* @param name The process name
154154
* @param processBuilder The process builder
155155
* @param lineConsumer The {@linkplain Consumer} the lines will be forwarded to
156-
* @param linePredicate The {@linkplain Predicate} to use on the STDOUT
156+
* @param linePredicate The {@linkplain Predicate} to use on the STDOUT and STDERR.
157157
* Used to determine the moment the target app is
158158
* properly warmed-up.
159159
* It can be null - in that case the warmup is skipped.
@@ -193,10 +193,14 @@ protected void processLine(String line) {
193193
CountDownLatch latch = new CountDownLatch(1);
194194
if (linePredicate != null) {
195195
StreamPumper.LinePump pump = new StreamPumper.LinePump() {
196+
// synchronization between stdout and stderr pumps
197+
private final Object sync = new Object();
196198
@Override
197199
protected void processLine(String line) {
198-
if (latch.getCount() > 0 && linePredicate.test(line)) {
199-
latch.countDown();
200+
synchronized (sync) {
201+
if (latch.getCount() > 0 && linePredicate.test(line)) {
202+
latch.countDown();
203+
}
200204
}
201205
}
202206
};
@@ -241,13 +245,13 @@ protected void processLine(String line) {
241245
* <span>The default redirects of STDOUT and STDERR are started</span>
242246
* <p>
243247
* It is possible to wait for the process to get to a warmed-up state
244-
* via {@linkplain Predicate} condition on the STDOUT. The warm-up will
245-
* wait indefinitely.
248+
* via {@linkplain Predicate} condition on the STDOUT/STDERR.
249+
* The warm-up will wait indefinitely.
246250
* </p>
247251
*
248252
* @param name The process name
249253
* @param processBuilder The process builder
250-
* @param linePredicate The {@linkplain Predicate} to use on the STDOUT
254+
* @param linePredicate The {@linkplain Predicate} to use on the STDOUT and STDERR.
251255
* Used to determine the moment the target app is
252256
* properly warmed-up.
253257
* It can be null - in that case the warmup is skipped.

0 commit comments

Comments
 (0)
Please sign in to comment.