aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-05-10 20:57:29 +0800
committerVoR0220 <catalanor0220@gmail.com>2016-05-11 05:03:33 +0800
commitd4206b7cd0bb0b8a3364c29fe097db035f308388 (patch)
tree267d5df3091710f7a1c3b54ddb8fcac5ab794015 /test/libsolidity
parent656405240e08e47fce40a2f62af93abc758bd2d2 (diff)
downloaddexon-solidity-d4206b7cd0bb0b8a3364c29fe097db035f308388.tar.gz
dexon-solidity-d4206b7cd0bb0b8a3364c29fe097db035f308388.tar.zst
dexon-solidity-d4206b7cd0bb0b8a3364c29fe097db035f308388.zip
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
Diffstat (limited to 'test/libsolidity')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp22
1 files changed, 0 insertions, 22 deletions
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