Skip to content

Commit d7b0ba9

Browse files
author
Xin Liu
committedNov 9, 2023
8319554: Select LogOutput* directly for stdout and stderr
Reviewed-by: jsjolen, dholmes
1 parent 68110b7 commit d7b0ba9

File tree

2 files changed

+34
-18
lines changed

2 files changed

+34
-18
lines changed
 

‎src/hotspot/share/logging/logConfiguration.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,12 @@ bool LogConfiguration::parse_log_arguments(const char* outputstr,
505505
errstream->print_cr("Invalid output index '%s'", outputstr);
506506
return false;
507507
}
508+
} else if (strcmp(outputstr, StdoutLog->name()) == 0) { // stdout
509+
idx = 0;
510+
assert(find_output(outputstr) == idx, "sanity check");
511+
} else if (strcmp(outputstr, StderrLog->name()) == 0) { // stderr
512+
idx = 1;
513+
assert(find_output(outputstr) == idx, "sanity check");
508514
} else { // Output specified using name
509515
// Normalize the name, stripping quotes and ensures it includes type prefix
510516
size_t len = strlen(outputstr) + strlen(implicit_output_prefix) + 1;

‎test/hotspot/gtest/logging/test_asynclog.cpp

+28-18
Original file line numberDiff line numberDiff line change
@@ -256,45 +256,55 @@ TEST_VM_F(AsyncLogTest, droppingMessage) {
256256
TEST_VM_F(AsyncLogTest, stdoutOutput) {
257257
testing::internal::CaptureStdout();
258258
fprintf(stdout, "header");
259-
set_log_config("stdout", "logging=debug");
259+
260+
if (!set_log_config("stdout", "logging=debug")) {
261+
return;
262+
}
260263

261264
test_asynclog_ls();
262265
test_asynclog_drop_messages();
263266

264267
AsyncLogWriter::flush();
265268
fflush(nullptr);
266269

267-
if (write_to_file(testing::internal::GetCapturedStdout())) {
268-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "header"));
269-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "LogStreamWithAsyncLogImpl"));
270-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream msg1-msg2-msg3"));
271-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream newline"));
270+
if (!write_to_file(testing::internal::GetCapturedStdout())) {
271+
return;
272+
}
272273

273-
if (AsyncLogWriter::instance() != nullptr) {
274-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "messages dropped due to async logging"));
275-
}
274+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "header"));
275+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "LogStreamWithAsyncLogImpl"));
276+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream msg1-msg2-msg3"));
277+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream newline"));
278+
279+
if (AsyncLogWriter::instance() != nullptr) {
280+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "messages dropped due to async logging"));
276281
}
277282
}
278283

279284
TEST_VM_F(AsyncLogTest, stderrOutput) {
280285
testing::internal::CaptureStderr();
281286
fprintf(stderr, "header");
282-
set_log_config("stderr", "logging=debug");
287+
288+
if (!set_log_config("stderr", "logging=debug")) {
289+
return;
290+
}
283291

284292
test_asynclog_ls();
285293
test_asynclog_drop_messages();
286294

287295
AsyncLogWriter::flush();
288296
fflush(nullptr);
289297

290-
if (write_to_file(testing::internal::GetCapturedStderr())) {
291-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "header"));
292-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "LogStreamWithAsyncLogImpl"));
293-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream msg1-msg2-msg3"));
294-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream newline"));
298+
if (!write_to_file(testing::internal::GetCapturedStderr())) {
299+
return;
300+
}
295301

296-
if (AsyncLogWriter::instance() != nullptr) {
297-
EXPECT_TRUE(file_contains_substring(TestLogFileName, "messages dropped due to async logging"));
298-
}
302+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "header"));
303+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "LogStreamWithAsyncLogImpl"));
304+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream msg1-msg2-msg3"));
305+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "logStream newline"));
306+
307+
if (AsyncLogWriter::instance() != nullptr) {
308+
EXPECT_TRUE(file_contains_substring(TestLogFileName, "messages dropped due to async logging"));
299309
}
300310
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Nov 9, 2023

@openjdk-notifier[bot]
Please sign in to comment.