Fix testsuppressions for Windows builds for now, pending further refactoring

This commit is contained in:
Greg Hewgill 2011-05-03 10:41:52 +00:00
parent 8dd4eb39a1
commit fb290a7197
1 changed files with 2 additions and 6 deletions

View File

@ -65,11 +65,6 @@ private:
{
errout.str("");
output.str("");
if (!ThreadExecutor::isEnabled())
{
// Skip this check on systems which don't use this feature
return;
}
std::vector<std::string> filenames;
std::map<std::string, long> filesizes;
@ -236,7 +231,8 @@ private:
void suppressionsSettings()
{
runChecks(&TestSuppressions::checkSuppression);
runChecks(&TestSuppressions::checkSuppressionThreads);
if (ThreadExecutor::isEnabled())
runChecks(&TestSuppressions::checkSuppressionThreads);
}
void suppressionsMultiFile()