.logicdata files closer together

This commit is contained in:
Andrey 2021-06-25 12:45:41 -04:00
parent 1b968fbcbc
commit 1c87b9ccfe
2 changed files with 2 additions and 2 deletions

View File

@ -2,4 +2,4 @@
build*/ build*/
gcov_working_area gcov_working_area
triggers triggers
*.logicdata unittest_*.logicdata

View File

@ -114,7 +114,7 @@ EngineTestHelper::EngineTestHelper(engine_type_e engineType, configuration_callb
EngineTestHelper::~EngineTestHelper() { EngineTestHelper::~EngineTestHelper() {
// Write history to file // Write history to file
std::stringstream filePath; std::stringstream filePath;
filePath << ::testing::UnitTest::GetInstance()->current_test_info()->name() << ".logicdata"; filePath << "unittest_" << ::testing::UnitTest::GetInstance()->current_test_info()->name() << ".logicdata";
writeEvents(filePath.str().c_str()); writeEvents(filePath.str().c_str());
// Cleanup // Cleanup