2019-02-19 16:34:59 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-02-19 16:34:59 +00:00
|
|
|
/** @file IsolTestOptions.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-03-15 16:22:04 +00:00
|
|
|
#include <liblangutil/EVMVersion.h>
|
|
|
|
|
2019-02-19 16:34:59 +00:00
|
|
|
#include <test/Common.h>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::test
|
2019-02-19 16:34:59 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
struct IsolTestOptions: CommonOptions
|
|
|
|
{
|
|
|
|
bool showHelp = false;
|
2019-04-10 14:09:32 +00:00
|
|
|
bool noColor = false;
|
2021-03-12 22:43:50 +00:00
|
|
|
bool acceptUpdates = false;
|
2019-04-17 09:45:51 +00:00
|
|
|
std::string testFilter = std::string{};
|
2021-09-20 18:22:58 +00:00
|
|
|
std::string editor = std::string{};
|
2019-02-19 16:34:59 +00:00
|
|
|
|
2021-09-20 18:22:58 +00:00
|
|
|
explicit IsolTestOptions();
|
2021-09-18 09:55:50 +00:00
|
|
|
void addOptions() override;
|
2019-02-19 16:34:59 +00:00
|
|
|
bool parse(int _argc, char const* const* _argv) override;
|
2019-04-10 14:09:32 +00:00
|
|
|
void validate() const override;
|
2019-02-19 16:34:59 +00:00
|
|
|
};
|
2019-12-23 15:50:30 +00:00
|
|
|
|
2019-02-19 16:34:59 +00:00
|
|
|
}
|