mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix for initialising storage strings.
This commit is contained in:
parent
6be070cf1f
commit
bb181d8c85
@ -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()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user