From d4206b7cd0bb0b8a3364c29fe097db035f308388 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 10 May 2016 14:57:29 +0200 Subject: Remove unused tests and add asserts for not implemented parts in code generation. quick fix on christian's rational change so that ubuntu will stop yelling be more specific with rational declaration for Windows sake rational in namespace correction for windows --- test/libsolidity/SolidityEndToEndTest.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'test/libsolidity') diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 67748c1f..de428f96 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -6634,28 +6634,6 @@ BOOST_AUTO_TEST_CASE(delete_on_array_of_structs) } -/*BOOST_AUTO_TEST_CASE(fixed_data_type) -{ - char const* sourceCode = R"( - contract C { - fixed public pi = 3.141592; - } - )"; - compileAndRun(sourceCode, 0, "C"); -} - -BOOST_AUTO_TEST_CASE(fixed_data_type_expression) -{ - char const* sourceCode = R"( - contract C { - function f(fixed a) returns (fixed) { - return (a + 3); - } - } - )"; - compileAndRun(sourceCode, 0, "C"); -}*/ - BOOST_AUTO_TEST_CASE(internal_library_function) { // tests that internal library functions can be called from outside -- cgit