From 298bdeec4921bd30c055a790976542989710b867 Mon Sep 17 00:00:00 2001 From: Daniel Kirchner Date: Mon, 5 Mar 2018 13:28:27 +0100 Subject: Remove unstable test case. --- test/libsolidity/SolidityEndToEndTest.cpp | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'test') diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index e61afb0e..c352a2c2 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -2481,25 +2481,6 @@ BOOST_AUTO_TEST_CASE(gas_and_value_basic) BOOST_REQUIRE(callContractFunction("checkState()") == encodeArgs(false, 20 - 5)); } -BOOST_AUTO_TEST_CASE(gas_left) -{ - char const* sourceCode = R"( - contract test { - function getGasLeft() public returns (uint256 val) { return msg.gas; } - } - )"; - compileAndRun(sourceCode); - BOOST_REQUIRE(callContractFunction("getGasLeft()") == encodeArgs(99978604)); - - sourceCode = R"( - contract test { - function getGasLeft() public returns (uint256 val) { return gasleft(); } - } - )"; - compileAndRun(sourceCode); - BOOST_REQUIRE(callContractFunction("getGasLeft()") == encodeArgs(99978604)); -} - BOOST_AUTO_TEST_CASE(value_complex) { char const* sourceCode = R"( -- cgit v1.2.3