diff options
author | chriseth <chris@ethereum.org> | 2018-02-24 02:29:20 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-03-02 00:19:35 +0800 |
commit | 05cc5f22b204a0c389e1de4feaa44d33492dd053 (patch) | |
tree | 941e6df6c0536310d01caacd510f1dfebb686193 /test/libsolidity/SolidityNatspecJSON.cpp | |
parent | 739533e9c7534cd3a0b321a3a6be1e041c91e4a2 (diff) | |
download | dexon-solidity-05cc5f22b204a0c389e1de4feaa44d33492dd053.tar.gz dexon-solidity-05cc5f22b204a0c389e1de4feaa44d33492dd053.tar.zst dexon-solidity-05cc5f22b204a0c389e1de4feaa44d33492dd053.zip |
Correctly set evm version in tests
Diffstat (limited to 'test/libsolidity/SolidityNatspecJSON.cpp')
-rw-r--r-- | test/libsolidity/SolidityNatspecJSON.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityNatspecJSON.cpp b/test/libsolidity/SolidityNatspecJSON.cpp index e8906bb9..49a725e0 100644 --- a/test/libsolidity/SolidityNatspecJSON.cpp +++ b/test/libsolidity/SolidityNatspecJSON.cpp @@ -47,6 +47,7 @@ public: { m_compilerStack.reset(false); m_compilerStack.addSource("", "pragma solidity >=0.0;\n" + _code); + m_compilerStack.setEVMVersion(dev::test::Options::get().evmVersion()); BOOST_REQUIRE_MESSAGE(m_compilerStack.parseAndAnalyze(), "Parsing contract failed"); Json::Value generatedDocumentation; @@ -67,6 +68,7 @@ public: { m_compilerStack.reset(false); m_compilerStack.addSource("", "pragma solidity >=0.0;\n" + _code); + m_compilerStack.setEVMVersion(dev::test::Options::get().evmVersion()); BOOST_CHECK(!m_compilerStack.parseAndAnalyze()); BOOST_REQUIRE(Error::containsErrorOfType(m_compilerStack.errors(), Error::Type::DocstringParsingError)); } |