diff options
author | Lu Guanqun <guanqun.lu@gmail.com> | 2015-12-24 00:04:11 +0800 |
---|---|---|
committer | Lu Guanqun <guanqun.lu@gmail.com> | 2016-01-23 01:14:00 +0800 |
commit | db6ce6d8a158e9c28853608794f324dc5e860822 (patch) | |
tree | 3949ef801773a4429510743c2e61973b906b329c /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | 36a758e224a600d277d683aec8578520e71b8290 (diff) | |
download | dexon-solidity-db6ce6d8a158e9c28853608794f324dc5e860822.tar.gz dexon-solidity-db6ce6d8a158e9c28853608794f324dc5e860822.tar.zst dexon-solidity-db6ce6d8a158e9c28853608794f324dc5e860822.zip |
comment out one un-supported test case
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 4e515b65..46199578 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -128,6 +128,7 @@ BOOST_AUTO_TEST_CASE(conditional_expression_multiple) BOOST_CHECK(callContractFunction("f(uint256)", u256(40)) == toBigEndian(u256(10))); } +/* BOOST_AUTO_TEST_CASE(conditional_expression_as_left_value) { char const* sourceCode = R"( @@ -143,6 +144,7 @@ BOOST_AUTO_TEST_CASE(conditional_expression_as_left_value) BOOST_CHECK(callContractFunction("f(uint256)", u256(20)) == toBigEndian(u256(3))); BOOST_CHECK(callContractFunction("f(uint256)", u256(5)) == toBigEndian(u256(1))); } +*/ BOOST_AUTO_TEST_CASE(recursive_calls) { |