aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-10-20 19:30:10 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-11-15 18:30:33 +0800
commitbee926bf3f2d9f56103547d1add5463ab21c5f8e (patch)
tree358a8028eaca6ad75ac0aa9cb00d31cfcf7308c6 /test
parent91367234d946266b73a5ace8071b0fd931f3a74b (diff)
downloaddexon-solidity-bee926bf3f2d9f56103547d1add5463ab21c5f8e.tar
dexon-solidity-bee926bf3f2d9f56103547d1add5463ab21c5f8e.tar.gz
dexon-solidity-bee926bf3f2d9f56103547d1add5463ab21c5f8e.tar.bz2
dexon-solidity-bee926bf3f2d9f56103547d1add5463ab21c5f8e.tar.lz
dexon-solidity-bee926bf3f2d9f56103547d1add5463ab21c5f8e.tar.xz
dexon-solidity-bee926bf3f2d9f56103547d1add5463ab21c5f8e.tar.zst
dexon-solidity-bee926bf3f2d9f56103547d1add5463ab21c5f8e.zip
Add tests for the ErrorTag
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/InlineAssembly.cpp5
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp15
2 files changed, 20 insertions, 0 deletions
diff --git a/test/libsolidity/InlineAssembly.cpp b/test/libsolidity/InlineAssembly.cpp
index a80a44a2..a26e9470 100644
--- a/test/libsolidity/InlineAssembly.cpp
+++ b/test/libsolidity/InlineAssembly.cpp
@@ -177,6 +177,11 @@ BOOST_AUTO_TEST_CASE(imbalanced_stack)
BOOST_CHECK(successAssemble("{ let x := 4 7 add }", false));
}
+BOOST_AUTO_TEST_CASE(error_tag)
+{
+ BOOST_CHECK(successAssemble("{ ErrorTag }"));
+}
+
BOOST_AUTO_TEST_SUITE_END()
}
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp
index 739a2efd..e50c2a85 100644
--- a/test/libsolidity/SolidityEndToEndTest.cpp
+++ b/test/libsolidity/SolidityEndToEndTest.cpp
@@ -7692,6 +7692,21 @@ BOOST_AUTO_TEST_CASE(packed_storage_overflow)
BOOST_CHECK(callContractFunction("f()") == encodeArgs(u256(0x1234), u256(0), u256(0), u256(0xfffe)));
}
+BOOST_AUTO_TEST_CASE(inline_assembly_errortag)
+{
+ char const* sourceCode = R"(
+ contract C {
+ function f() {
+ assembly {
+ jump(ErrorTag)
+ }
+ }
+ }
+ )";
+ compileAndRun(sourceCode, 0, "C");
+ BOOST_CHECK(callContractFunction("f()") == encodeArgs());
+}
+
BOOST_AUTO_TEST_SUITE_END()
}