|
@ -566,16 +566,16 @@ BOOST_AUTO_TEST_CASE(strings) |
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_string_on_stack) |
|
|
BOOST_AUTO_TEST_CASE(empty_string_on_stack) |
|
|
{ |
|
|
{ |
|
|
char const* sourceCode = "contract test {\n" |
|
|
char const* sourceCode = R"( |
|
|
" function run(bytes0 empty, uint8 inp) returns(uint16 a, bytes0 b, bytes4 c) {\n" |
|
|
contract test { |
|
|
" var x = \"abc\";\n" |
|
|
function run() external returns(bytes2 ret) { |
|
|
" var y = \"\";\n" |
|
|
var y = ""; |
|
|
" var z = inp;\n" |
|
|
ret = y; |
|
|
" a = z; b = y; c = x;" |
|
|
} |
|
|
" }\n" |
|
|
} |
|
|
"}\n"; |
|
|
)"; |
|
|
compileAndRun(sourceCode); |
|
|
compileAndRun(sourceCode); |
|
|
BOOST_CHECK(callContractFunction("run(bytes0,uint8)", string(), byte(0x02)) == encodeArgs(0x2, string(""), string("abc\0"))); |
|
|
BOOST_CHECK(callContractFunction("run()") == encodeArgs(byte(0x00))); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(inc_dec_operators) |
|
|
BOOST_AUTO_TEST_CASE(inc_dec_operators) |
|
@ -3786,30 +3786,6 @@ BOOST_AUTO_TEST_CASE(packed_storage_structs_delete) |
|
|
BOOST_CHECK(m_state.storage(m_contractAddress).empty()); |
|
|
BOOST_CHECK(m_state.storage(m_contractAddress).empty()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(packed_storage_structs_with_bytes0) |
|
|
|
|
|
{ |
|
|
|
|
|
char const* sourceCode = R"( |
|
|
|
|
|
contract C { |
|
|
|
|
|
struct str { uint8 a; bytes0 b; uint8 c; } |
|
|
|
|
|
uint8 a; |
|
|
|
|
|
bytes0 x; |
|
|
|
|
|
uint8 b; |
|
|
|
|
|
str data; |
|
|
|
|
|
function test() returns (bool) { |
|
|
|
|
|
a = 2; |
|
|
|
|
|
b = 3; |
|
|
|
|
|
data.a = 4; |
|
|
|
|
|
data.c = 5; |
|
|
|
|
|
delete x; |
|
|
|
|
|
delete data.b; |
|
|
|
|
|
return a == 2 && b == 3 && data.a == 4 && data.c == 5; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
)"; |
|
|
|
|
|
compileAndRun(sourceCode); |
|
|
|
|
|
BOOST_CHECK(callContractFunction("test()") == encodeArgs(true)); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(overloaded_function_call_resolve_to_first) |
|
|
BOOST_AUTO_TEST_CASE(overloaded_function_call_resolve_to_first) |
|
|
{ |
|
|
{ |
|
|
char const* sourceCode = R"( |
|
|
char const* sourceCode = R"( |
|
|