Skip to content

Commit 2b8e0f6

Browse files
authored
Mute LoggingOutputStreamTests (#51917)
Relates #51838
1 parent 2ed9e95 commit 2b8e0f6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

server/src/test/java/org/elasticsearch/common/logging/LoggingOutputStreamTests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public void createStream() {
5858
printStream = new PrintStream(loggingStream, false, StandardCharsets.UTF_8);
5959
}
6060

61+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/51838")
6162
public void testEmptyLine() {
6263
printStream.println("");
6364
assertTrue(loggingStream.lines.isEmpty());
@@ -95,6 +96,7 @@ public void testBufferExtension() {
9596
assertThat(loggingStream.threadLocal.get().bytes.length, equalTo(DEFAULT_BUFFER_LENGTH));
9697
}
9798

99+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/51838")
98100
public void testMaxBuffer() {
99101
String longStr = randomAlphaOfLength(MAX_BUFFER_LENGTH);
100102
String extraLongStr = longStr + "OVERFLOW";

0 commit comments

Comments
 (0)