solidity/test/Common.h

87 lines
3.0 KiB
C
Raw Normal View History

2018-10-10 14:12:18 +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/>.
*/
// SPDX-License-Identifier: GPL-3.0
2018-10-10 14:12:18 +00:00
#pragma once
#include <libsolutil/Exceptions.h>
#include <liblangutil/EVMVersion.h>
2020-06-05 23:10:48 +00:00
#include <test/evmc/evmc.h>
2018-10-10 14:12:18 +00:00
#include <boost/filesystem/path.hpp>
#include <boost/noncopyable.hpp>
#include <boost/program_options.hpp>
2018-10-10 14:12:18 +00:00
namespace solidity::test
2018-10-10 14:12:18 +00:00
{
#ifdef _WIN32
static constexpr auto evmoneFilename = "evmone.dll";
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.4.1/evmone-0.4.1-windows-amd64.zip";
2020-06-05 23:10:48 +00:00
static constexpr auto heraFilename = "hera.dll";
2020-11-18 21:15:22 +00:00
static constexpr auto heraDownloadLink = "https://github.com/ewasm/hera/archive/v0.3.2.tar.gz";
#elif defined(__APPLE__)
static constexpr auto evmoneFilename = "libevmone.dylib";
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.4.1/evmone-0.4.1-darwin-x86_64.tar.gz";
2020-06-05 23:10:48 +00:00
static constexpr auto heraFilename = "libhera.dylib";
2020-11-18 21:15:22 +00:00
static constexpr auto heraDownloadLink = "https://github.com/ewasm/hera/releases/download/v0.3.2/hera-0.3.2-darwin-x86_64.tar.gz";
#else
static constexpr auto evmoneFilename = "libevmone.so";
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.4.1/evmone-0.4.1-linux-x86_64.tar.gz";
2020-06-05 23:10:48 +00:00
static constexpr auto heraFilename = "libhera.so";
2020-11-18 21:15:22 +00:00
static constexpr auto heraDownloadLink = "https://github.com/ewasm/hera/releases/download/v0.3.2/hera-0.3.2-linux-x86_64.tar.gz";
#endif
struct ConfigException : public util::Exception {};
struct CommonOptions: boost::noncopyable
{
2020-06-05 23:10:48 +00:00
std::vector<boost::filesystem::path> vmPaths;
boost::filesystem::path testPath;
2020-06-05 23:10:48 +00:00
bool ewasm = false;
bool optimize = false;
bool enforceViaYul = false;
bool enforceGasTest = false;
u256 enforceGasTestMinValue = 100000;
bool disableSMT = false;
bool useABIEncoderV1 = false;
bool showMessages = false;
bool showMetadata = false;
langutil::EVMVersion evmVersion() const;
virtual bool parse(int argc, char const* const* argv);
// Throws a ConfigException on error
virtual void validate() const;
static CommonOptions const& get();
static void setSingleton(std::unique_ptr<CommonOptions const>&& _instance);
CommonOptions(std::string caption = "");
2020-11-11 21:55:38 +00:00
virtual ~CommonOptions() {}
2020-06-05 23:10:48 +00:00
protected:
boost::program_options::options_description options;
private:
std::string evmVersionString;
static std::unique_ptr<CommonOptions const> m_singleton;
};
2018-10-10 14:12:18 +00:00
}