diff options
author | RJ Catalano <rcatalano@macsales.com> | 2016-03-12 07:53:54 +0800 |
---|---|---|
committer | VoR0220 <catalanor0220@gmail.com> | 2016-05-10 00:41:02 +0800 |
commit | 91fda50922865c1dbeed34652c30ac89f5edfadf (patch) | |
tree | e908f41e77eab2f95b84a6750c4d6df31b5c8123 | |
parent | dff1a26f55adc54ccfddfa9d2e87f1dab719d8ca (diff) | |
download | dexon-solidity-91fda50922865c1dbeed34652c30ac89f5edfadf.tar.gz dexon-solidity-91fda50922865c1dbeed34652c30ac89f5edfadf.tar.zst dexon-solidity-91fda50922865c1dbeed34652c30ac89f5edfadf.zip |
fixed problem with var...probably a conversion problem for fixed in size capabilities
adding fixed type tests
Removing bitshift and regrouping fixed type tests together
-rw-r--r-- | libsolidity/ast/Types.cpp | 2 | ||||
-rw-r--r-- | libsolidity/parsing/Token.cpp | 4 | ||||
-rw-r--r-- | test/libsolidity/SolidityNameAndTypeResolution.cpp | 72 |
3 files changed, 73 insertions, 5 deletions
diff --git a/libsolidity/ast/Types.cpp b/libsolidity/ast/Types.cpp index 577838fb..a0915df9 100644 --- a/libsolidity/ast/Types.cpp +++ b/libsolidity/ast/Types.cpp @@ -469,7 +469,7 @@ bool ConstantNumberType::isValidLiteral(Literal const& _literal) { //problem here. If the first digit is a 0 in the string, it won't //turn it into a integer...Using find if not to count the leading 0s. - + auto leadingZeroes = find_if_not( radixPoint + 1, _literal.value().end(), diff --git a/libsolidity/parsing/Token.cpp b/libsolidity/parsing/Token.cpp index d3786524..cbe0c0de 100644 --- a/libsolidity/parsing/Token.cpp +++ b/libsolidity/parsing/Token.cpp @@ -153,9 +153,9 @@ tuple<Token::Value, unsigned int, unsigned int> Token::fromIdentifierOrKeyword(s positionM < positionX && positionX < _literal.end() && *positionX == 'x' && - all_of(positionX++, _literal.end(), ::isdigit) + all_of(++positionX, _literal.end(), ::isdigit) ) { - int n = parseSize(positionX + 1, _literal.end()); + int n = parseSize(positionX, _literal.end()); if ( 0 <= m && m <= 256 && 0 <= n && n <= 256 && diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp index 9ead3dcd..9c41dab8 100644 --- a/test/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp @@ -3222,7 +3222,6 @@ BOOST_AUTO_TEST_CASE(library_functions_do_not_have_value) BOOST_CHECK(!success(text)); } - BOOST_AUTO_TEST_CASE(invalid_fixed_types_0x7_mxn) { char const* text = R"( @@ -3544,9 +3543,41 @@ BOOST_AUTO_TEST_CASE(rational_bitand_binary_operation) } } )"; + + BOOST_CHECK(success(text)); +} + + +BOOST_AUTO_TEST_CASE(invalid_non_mod_8_fixed_types) +{ + char const* text = R"( + contract test { + function f(){ + fixed8x10 a = 12345678.1234567890; + } + } + )"; + BOOST_CHECK(!success(text)); } +BOOST_AUTO_TEST_CASE(valid_fixed_types) +{ + char const* text = R"( + contract test { + function f(){ + fixed8x8 a = 87654321.12345678; + fixed16x16 b = a**2; + fixed24x24 c = b**(1.5); + fixed32x32 d = b**2; + fixed40x40 e = a**5; + } + } + )"; + + BOOST_CHECK(success(text)); +} + BOOST_AUTO_TEST_CASE(fixed_type_int_conversion) { char const* text = R"( @@ -3620,6 +3651,19 @@ BOOST_AUTO_TEST_CASE(fixed_type_literal_seconds_and_wei) BOOST_CHECK(!success(text)); } +BOOST_AUTO_TEST_CASE(uint_array_declaration_with_fixed_type) +{ + char const* text = R"( + contract test { + function f() { + uint[fixed(3.56)] a; + } + } + )"; + BOOST_CHECK(!success(text)); +} + + BOOST_AUTO_TEST_CASE(array_declaration_with_fixed_literal) { char const* text = R"( @@ -3645,18 +3689,41 @@ BOOST_AUTO_TEST_CASE(mapping_with_fixed_literal) BOOST_CHECK(success(text)); } +BOOST_AUTO_TEST_CASE(inline_array_fixed_type) +{ + char const* text = R"( + contract test { + function f() { + fixed[3] memory a = [fixed(3.5), fixed(4.1234), fixed(967.32)]; + } + } + )"; + BOOST_CHECK(success(text)); +} + BOOST_AUTO_TEST_CASE(inline_array_fixed_literals) { char const* text = R"( contract test { function f() { - fixed[3] memory a = [3.5, 4.1234, 967.32]; + fixed[3] memory a = [3.5, 4.1234, 967.32]; } } )"; BOOST_CHECK(success(text)); } +BOOST_AUTO_TEST_CASE(zero_and_eight_variants_fixed) +{ + char const* text = R"( + contract A { + fixed8x0 someInt = 4; + fixed0x8 half = 0.5; + } + )"; + BOOST_CHECK(success(text)); +} + BOOST_AUTO_TEST_CASE(size_capabilities_of_fixed_point_types) { char const* text = R"( @@ -3685,6 +3752,7 @@ BOOST_AUTO_TEST_CASE(var_capable_of_holding_fixed_constants) BOOST_CHECK(success(text)); } + BOOST_AUTO_TEST_SUITE_END() } |