diff options
author | chriseth <chris@ethereum.org> | 2018-12-06 22:59:58 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-12-11 01:06:07 +0800 |
commit | d80d324de7fa7eb79e21d1e6d7cbca4ba3eebcd0 (patch) | |
tree | 3f9e314a241bbe62cd73d348eb3117972622f52a /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | ead13b1d21b1b10f4a13afb98a742fda9828edb2 (diff) | |
download | dexon-solidity-d80d324de7fa7eb79e21d1e6d7cbca4ba3eebcd0.tar.gz dexon-solidity-d80d324de7fa7eb79e21d1e6d7cbca4ba3eebcd0.tar.zst dexon-solidity-d80d324de7fa7eb79e21d1e6d7cbca4ba3eebcd0.zip |
Tests for gas costs.
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index c6135a72..dfa60fc5 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -12245,7 +12245,7 @@ BOOST_AUTO_TEST_CASE(include_creation_bytecode_only_once) compileAndRun(sourceCode); BOOST_CHECK_LE( double(m_compiler.object("Double").bytecode.size()), - 1.1 * double(m_compiler.object("Single").bytecode.size()) + 1.2 * double(m_compiler.object("Single").bytecode.size()) ); } |