Add nooptions label to smt checks.

This commit is contained in:
Daniel Kirchner
2020-07-11 20:17:12 +02:00
parent d1ea33bcca
commit c8f25142a7
5 changed files with 16 additions and 9 deletions
+2 -2
View File
@@ -31,9 +31,9 @@ class SMTCheckerTest: public SyntaxTest
public:
static std::unique_ptr<TestCase> create(Config const& _config)
{
return std::make_unique<SMTCheckerTest>(_config.filename, _config.evmVersion);
return std::make_unique<SMTCheckerTest>(_config.filename);
}
SMTCheckerTest(std::string const& _filename, langutil::EVMVersion _evmVersion);
SMTCheckerTest(std::string const& _filename);
TestResult run(std::ostream& _stream, std::string const& _linePrefix = "", bool _formatted = false) override;