Skip to content
Snippets Groups Projects
Commit 905d9384 authored by Harald Scheirich's avatar Harald Scheirich
Browse files

BUG: Incorrect logic with regards to directory creation

parent 4f24afe0
No related branches found
No related tags found
No related merge requests found
...@@ -28,23 +28,24 @@ ...@@ -28,23 +28,24 @@
int int
main(int argc, char** argv) main(int argc, char** argv)
{ {
bool removeLog = false; bool removeLog = true;
for (int i = 0; i < argc; ++i) for (int i = 0; i < argc; ++i)
{ {
if (std::string(argv[i]) == "--imstk_keep_log") if (std::string(argv[i]) == "--imstk_keep_log")
{ {
removeLog = true; removeLog = false;
} }
} }
if (removeLog) if (removeLog)
{ {
vtksys::SystemTools::RemoveADirectory("testlog"); vtksys::SystemTools::RemoveADirectory("log");
vtksys::SystemTools::MakeDirectory("testlog");
} }
vtksys::SystemTools::MakeDirectory("log");
auto& logger = imstk::Logger::getInstance(); auto& logger = imstk::Logger::getInstance();
logger.addFileSink("test", "testlog"); logger.addFileSink("test", "log");
::testing::InitGoogleTest(&argc, argv); ::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS(); return RUN_ALL_TESTS();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment