Skip to content

Commit 8b029e2

Browse files
author
Mikhailo Seledtsov
committedDec 4, 2019
8235356: [TESTBUG] Disable 'producer is alive' check in JFR TestCrossProcessStreaming
Disabled the check Reviewed-by: dcubed
1 parent 827e5e3 commit 8b029e2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎test/jdk/jdk/jfr/api/consumer/streaming/TestCrossProcessStreaming.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,9 @@ public static void main(String... args) throws Exception {
126126

127127
// Expected that some portion of events emitted by the producer are delivered
128128
// to the consumer while producer is still alive, at least one event for certain.
129-
Asserts.assertLTE(1, ce.whileProducerAlive.get(),
130-
"Too few events are delivered while producer is alive");
129+
// Assertion below is disabled due to: JDK-8235206
130+
// Asserts.assertLTE(1, ce.whileProducerAlive.get(),
131+
// "Too few events are delivered while producer is alive");
131132
}
132133

133134
static Process startProducerProcess(String extraParam) throws Exception {

0 commit comments

Comments
 (0)
Please sign in to comment.