diff options
author | chriseth <c@ethdev.com> | 2015-07-16 01:13:42 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-07-16 04:13:27 +0800 |
commit | bb181d8c856d86e042aad62cdf792149f352e948 (patch) | |
tree | 2dd127b8d51b889a483f093deb34bdca19f2789e | |
parent | 6be070cf1f9e620995aaff7774669dd3f9f8fa90 (diff) | |
download | dexon-solidity-bb181d8c856d86e042aad62cdf792149f352e948.tar.gz dexon-solidity-bb181d8c856d86e042aad62cdf792149f352e948.tar.zst dexon-solidity-bb181d8c856d86e042aad62cdf792149f352e948.zip |
Fix for initialising storage strings.
-rw-r--r-- | libsolidity/SolidityEndToEndTest.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libsolidity/SolidityEndToEndTest.cpp b/libsolidity/SolidityEndToEndTest.cpp index 9f806347..113c76a0 100644 --- a/libsolidity/SolidityEndToEndTest.cpp +++ b/libsolidity/SolidityEndToEndTest.cpp @@ -5033,6 +5033,21 @@ BOOST_AUTO_TEST_CASE(literal_strings) BOOST_CHECK(callContractFunction("empty()") == encodeDyn(string())); } +BOOST_AUTO_TEST_CASE(initialise_string_constant) +{ + char const* sourceCode = R"( + contract Test { + string public short = "abcdef"; + string public long = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789001234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678900123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789001234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890"; + } + )"; + compileAndRun(sourceCode, 0, "Test"); + string longStr = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789001234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678900123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789001234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890"; + string shortStr = "abcdef"; + + BOOST_CHECK(callContractFunction("long()") == encodeDyn(longStr)); + BOOST_CHECK(callContractFunction("short()") == encodeDyn(shortStr)); +} BOOST_AUTO_TEST_SUITE_END() |