diff options
author | chriseth <c@ethdev.com> | 2016-10-31 23:22:27 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-10-31 23:40:19 +0800 |
commit | 681b130dc81fa591be7c4b08200146912b12ffb9 (patch) | |
tree | d49e3401070d86c92b0cffe1fcb7ddec2688bf9a | |
parent | e85390cc60cb8305b9cda9241d90017dd460dd73 (diff) | |
download | dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar.gz dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar.zst dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.zip |
Test case for overflow in storage.
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 8ef9a45b..8600443d 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -7533,6 +7533,26 @@ BOOST_AUTO_TEST_CASE(inline_assembly_in_modifiers) BOOST_CHECK(callContractFunction("f()") == encodeArgs(true)); } +BOOST_AUTO_TEST_CASE(packed_storage_overflow) +{ + char const* sourceCode = R"( + contract C { + uint16 x = 0x1234; + uint16 a = 0xffff; + uint16 b; + function f() returns (uint, uint, uint, uint) { + a++; + uint c = b; + delete b; + a -= 2; + return (x, c, b, a); + } + } + )"; + compileAndRun(sourceCode, 0, "C"); + BOOST_CHECK(callContractFunction("f()") == encodeArgs(u256(0x1234), u256(0), u256(0), u256(0xfffe))); +} + BOOST_AUTO_TEST_SUITE_END() } |