Specifing concrete test when filling testsuite

This commit is contained in:
winsvega 2015-05-05 16:46:01 +03:00
parent 76e1df6c9b
commit d2457abb98
2 changed files with 8 additions and 0 deletions

View File

@ -741,6 +741,12 @@ Options::Options()
inputLimits = true; inputLimits = true;
bigData = true; bigData = true;
} }
else if (arg.compare(0, 12, "--singletest") == 0)
{
singletest = true;
if (arg.size() > 12)
singletestName = arg.substr(13); // skip '=' char
}
} }
} }

View File

@ -188,6 +188,8 @@ public:
/// Test selection /// Test selection
/// @{ /// @{
bool singletest = false;
std::string singletestName;
bool performance = false; bool performance = false;
bool quadratic = false; bool quadratic = false;
bool memory = false; bool memory = false;