diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-18 21:34:22 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-18 23:14:25 +0800 |
commit | 075715cf151669058251c78b47c0b94fc913e74a (patch) | |
tree | 33b58cb3ceffed2c2893be6778f005bf763d9e5d /test/libsolidity/Metadata.cpp | |
parent | 0eab808ececc9d7b835a5c174731c9eded04bf43 (diff) | |
download | dexon-solidity-075715cf151669058251c78b47c0b94fc913e74a.tar.gz dexon-solidity-075715cf151669058251c78b47c0b94fc913e74a.tar.zst dexon-solidity-075715cf151669058251c78b47c0b94fc913e74a.zip |
Do not use obscure CompilerStack methods in tests
Diffstat (limited to 'test/libsolidity/Metadata.cpp')
-rw-r--r-- | test/libsolidity/Metadata.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/libsolidity/Metadata.cpp b/test/libsolidity/Metadata.cpp index 60bb2e4e..32cf910b 100644 --- a/test/libsolidity/Metadata.cpp +++ b/test/libsolidity/Metadata.cpp @@ -43,7 +43,9 @@ BOOST_AUTO_TEST_CASE(metadata_stamp) } )"; CompilerStack compilerStack; - BOOST_REQUIRE(compilerStack.compile(std::string(sourceCode))); + compilerStack.addSource("", std::string(sourceCode)); + /// NOTE: compiles without optimisations + ETH_TEST_REQUIRE_NO_THROW(compilerStack.compile(), "Compiling contract failed"); bytes const& bytecode = compilerStack.runtimeObject("test").bytecode; std::string const& metadata = compilerStack.onChainMetadata("test"); BOOST_CHECK(dev::test::isValidMetadata(metadata)); |