Don't print file

This commit is contained in:
Denis Hananein 2024-08-07 21:03:17 +02:00
parent a6b70a685d
commit 6e35c3c072

View file

@ -254,8 +254,8 @@ class MyScopedTraceTestListener : public ::testing::EmptyTestEventListener {
void OnScopedTraceEnter(const testing::UnitTest& unit_test, const char* file,
int line, std::string message) override {
const auto* test_info = unit_test.current_test_info();
printf("scoped trace enter test: %s trace: %s:%d message: %s.\n",
test_info->name(), file, line, message.c_str());
printf("scoped trace enter test: %s line: %d message: %s.\n",
test_info->name(), line, message.c_str());
}
void OnScopedTraceExit(const testing::UnitTest& unit_test) override {