mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Specifing concrete test when filling testsuite
This commit is contained in:
parent
76e1df6c9b
commit
d2457abb98
@ -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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user