.logicdata files closer together
This commit is contained in:
parent
12067584e9
commit
288c2620c6
|
@ -2,4 +2,4 @@
|
||||||
build*/
|
build*/
|
||||||
gcov_working_area
|
gcov_working_area
|
||||||
triggers
|
triggers
|
||||||
*.logicdata
|
unittest_*.logicdata
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue