Fix testsuppressions for Windows builds for now, pending further refactoring
This commit is contained in:
parent
8dd4eb39a1
commit
fb290a7197
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue