Updates tests to version 0.6.0.

This commit is contained in:
Erik Kundt
2019-09-24 12:01:14 +02:00
parent 9a42a93955
commit e3a29ffcd3
6 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -96,17 +96,17 @@ BOOST_AUTO_TEST_CASE(string_storage)
compileAndRun(sourceCode);
if (Options::get().evmVersion() <= EVMVersion::byzantium())
CHECK_DEPLOY_GAS(134209, 130895);
CHECK_DEPLOY_GAS(134145, 130831);
// This is only correct on >=Constantinople.
else if (Options::get().useABIEncoderV2)
{
if (Options::get().optimizeYul)
CHECK_DEPLOY_GAS(127785, 127785);
CHECK_DEPLOY_GAS(127785, 127721);
else
CHECK_DEPLOY_GAS(151587, 135371);
}
else
CHECK_DEPLOY_GAS(126993, 119723);
CHECK_DEPLOY_GAS(126929, 119659);
if (Options::get().evmVersion() >= EVMVersion::byzantium())
{
@@ -1,4 +1,4 @@
pragma solidity ^0.5.7;
pragma solidity >=0.5.7 <0.7.0;
contract InvalidTest {
@@ -1,4 +1,4 @@
pragma solidity ^0.5.0;
pragma solidity >=0.4.0 <0.7.0;
contract ERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);