diff options
author | benjaminion <ben@edginet.org> | 2017-06-22 16:45:23 +0800 |
---|---|---|
committer | benjaminion <ben@edginet.org> | 2017-06-22 16:45:23 +0800 |
commit | 9954c5c0faccdf56ba11ab90438cfa6b1cdcd4b4 (patch) | |
tree | 501d88859d5f162c42d341244470f64c6859999d /test/liblll | |
parent | ff8de3e9fa0e0a4ce092a0190f3c00162c22ccaf (diff) | |
download | dexon-solidity-9954c5c0faccdf56ba11ab90438cfa6b1cdcd4b4.tar.gz dexon-solidity-9954c5c0faccdf56ba11ab90438cfa6b1cdcd4b4.tar.zst dexon-solidity-9954c5c0faccdf56ba11ab90438cfa6b1cdcd4b4.zip |
LLL: Testcases for the two create built-in macros.
Diffstat (limited to 'test/liblll')
-rw-r--r-- | test/liblll/EndToEndTest.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/liblll/EndToEndTest.cpp b/test/liblll/EndToEndTest.cpp index 3668038d..c4a98e2b 100644 --- a/test/liblll/EndToEndTest.cpp +++ b/test/liblll/EndToEndTest.cpp @@ -304,6 +304,34 @@ BOOST_AUTO_TEST_CASE(keccak256_32bytes) fromHex("b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6"))); } +BOOST_AUTO_TEST_CASE(create_1_arg) +{ + char const* sourceCode = R"( + (returnlll + (seq + (call allgas + (create (returnlll (return 42))) + 0 0 0 0x00 0x20) + (return 0x00 0x20))) + )"; + compileAndRun(sourceCode); + BOOST_CHECK(callFallback() == encodeArgs(u256(42))); +} + +BOOST_AUTO_TEST_CASE(create_2_args) +{ + char const* sourceCode = R"( + (returnlll + (seq + (call allgas + (create 42 (returnlll (return (balance (address))))) + 0 0 0 0x00 0x20) + (return 0x00 0x20))) + )"; + compileAndRun(sourceCode); + BOOST_CHECK(callFallbackWithValue(42) == encodeArgs(u256(42))); +} + BOOST_AUTO_TEST_CASE(sha3_two_args) { char const* sourceCode = R"( |