Adds --test | -t option to isoltest.

This commit is contained in:
Erik Kundt
2019-04-17 11:36:14 +02:00
committed by chriseth
parent 1feefa1ccc
commit 11087422d6
4 changed files with 123 additions and 31 deletions
+3 -1
View File
@@ -30,11 +30,13 @@ namespace test
struct IsolTestOptions: CommonOptions
{
bool noColor = false;
bool showHelp = false;
bool noColor = false;
std::string test = std::string{};
IsolTestOptions(std::string* _editor);
bool parse(int _argc, char const* const* _argv) override;
void validate() const override;
};
}
}