Refer to the test log in the final failure messages. PiperOrigin-RevId: 933287366
diff --git a/fuzztest/internal/googletest_adaptor.h b/fuzztest/internal/googletest_adaptor.h index 0de6d07..4571781 100644 --- a/fuzztest/internal/googletest_adaptor.h +++ b/fuzztest/internal/googletest_adaptor.h
@@ -86,13 +86,15 @@ #endif } else { EXPECT_TRUE(test->RunInUnitTestMode(configuration_)) - << "Failure(s) found in the unit-test mode."; + << "Failure(s) found in the unit-test mode - please see the test " + "log for more details."; } } else { // TODO(b/245753736): Consider using `tolerate_failure` when FuzzTest can // tolerate crashes in fuzzing mode. EXPECT_TRUE(test->RunInFuzzingMode(argc_, argv_, configuration_)) - << "Failure(s) found in the fuzzing mode."; + << "Failure(s) found in the fuzzing mode - please see the test log " + "for more details."; } }