From 55e5420e60d819ad22825636ba4e70f4ee572d8c Mon Sep 17 00:00:00 2001 From: kanjoe24 <165808281+kanjoe24@users.noreply.github.com> Date: Wed, 4 Dec 2024 13:02:43 +0000 Subject: [PATCH] Fix gh#149 : Minor change to update log and xml files for VARIANT=CPP --- src/cpp_source/ut_gtest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpp_source/ut_gtest.cpp b/src/cpp_source/ut_gtest.cpp index 0ffa049..bb65bf5 100644 --- a/src/cpp_source/ut_gtest.cpp +++ b/src/cpp_source/ut_gtest.cpp @@ -148,6 +148,8 @@ void UT_set_results_output_filename(const char* szFilenameRoot) // Set the output format and path programmatically ::testing::FLAGS_gtest_output = std::string("xml:") + filepath + "-report.xml"; + std::cout << "Listing Filename:[" << filepath << "-report.xml]\n" << std::flush; + std::cout << "Results Filename:[" << filepath << ".log]\n" << std::flush; } void UT_set_test_mode(TestMode_t mode)