@@ -256,45 +256,55 @@ TEST_VM_F(AsyncLogTest, droppingMessage) {
256
256
TEST_VM_F (AsyncLogTest, stdoutOutput) {
257
257
testing::internal::CaptureStdout ();
258
258
fprintf (stdout, " header" );
259
- set_log_config (" stdout" , " logging=debug" );
259
+
260
+ if (!set_log_config (" stdout" , " logging=debug" )) {
261
+ return ;
262
+ }
260
263
261
264
test_asynclog_ls ();
262
265
test_asynclog_drop_messages ();
263
266
264
267
AsyncLogWriter::flush ();
265
268
fflush (nullptr );
266
269
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
+ }
272
273
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" ));
276
281
}
277
282
}
278
283
279
284
TEST_VM_F (AsyncLogTest, stderrOutput) {
280
285
testing::internal::CaptureStderr ();
281
286
fprintf (stderr, " header" );
282
- set_log_config (" stderr" , " logging=debug" );
287
+
288
+ if (!set_log_config (" stderr" , " logging=debug" )) {
289
+ return ;
290
+ }
283
291
284
292
test_asynclog_ls ();
285
293
test_asynclog_drop_messages ();
286
294
287
295
AsyncLogWriter::flush ();
288
296
fflush (nullptr );
289
297
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
+ }
295
301
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" ));
299
309
}
300
310
}
1 commit comments
openjdk-notifier[bot] commentedon Nov 9, 2023
Review
Issues