test: Add different styles of returndatacopy and returndatasize

This commit is contained in:
Yoichi Hirai 2017-05-29 14:46:42 +02:00
parent 05af6c9255
commit 464dea2459
No known key found for this signature in database
GPG Key ID: E7B75D080FCF7992

View File

@ -547,7 +547,17 @@ BOOST_AUTO_TEST_CASE(returndatasize)
BOOST_CHECK(successAssemble("{ let r := returndatasize }"));
}
BOOST_AUTO_TEST_CASE(returndatasize_functional)
{
BOOST_CHECK(successAssemble("{ let r := returndatasize() }"));
}
BOOST_AUTO_TEST_CASE(returndatacopy)
{
BOOST_CHECK(successAssemble("{ 64 32 0 returndatacopy }"));
}
BOOST_AUTO_TEST_CASE(returndatacopy_functional)
{
BOOST_CHECK(successAssemble("{ returndatacopy(0, 32, 64) }"));
}