fixed tests

This commit is contained in:
gabime
2015-05-15 20:54:01 +03:00
parent b5eaef81d4
commit c701420cf6
4 changed files with 8 additions and 6 deletions

View File

@@ -37,9 +37,9 @@ static void delete_logs()
{
spdlog::drop_all();
#ifdef _WIN32
system("del /F /Q logs\\*");
auto rv = system("del /F /Q logs\\*");
#else
system("rm -f logs/*");
auto rv = system("rm -f logs/*");
#endif
}