delete working copies when test has been completed

This commit is contained in:
Martchus 2016-05-01 20:04:01 +02:00
parent 6c6ab0e301
commit ec3c12d222
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@
#include <iostream>
#include <queue>
#include <cstring>
#include <cstdio>
using namespace std;
using namespace ConversionUtilities;
@ -179,7 +180,10 @@ void OverallTests::makeFile(const string &path, void (OverallTests::*modifyRouti
default:
;
}
// close and remove file and backup files
m_fileInfo.close();
remove(path.c_str());
remove((path + ".bak").c_str());
}
/*!