aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-10-31 23:22:27 +0800
committerchriseth <c@ethdev.com>2016-10-31 23:40:19 +0800
commit681b130dc81fa591be7c4b08200146912b12ffb9 (patch)
treed49e3401070d86c92b0cffe1fcb7ddec2688bf9a /test
parente85390cc60cb8305b9cda9241d90017dd460dd73 (diff)
downloaddexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar
dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar.gz
dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar.bz2
dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar.lz
dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar.xz
dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.tar.zst
dexon-solidity-681b130dc81fa591be7c4b08200146912b12ffb9.zip
Test case for overflow in storage.
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp20
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()
}