aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Disallow uppercase X in hex number literalshydai2018-09-191-0/+5
|
* Merge pull request #4999 from liangdzou/fix_typochriseth2018-09-172-3/+3
|\ | | | | fix some code format problems
| * fix some format typosliangdzou2018-09-172-3/+3
| |
* | Merge pull request #4984 from elopio/add-missing-inliner-testchriseth2018-09-171-0/+3
|\ \ | |/ |/| Add a missing tests for yul inliner optimization
| * Add a missing tests for yul inliner optimizationLeo Arias2018-09-161-0/+3
| | | | | | | | | | | | | | | | | | When the statement has two return values, the function is not inlinable. When the function has one statement but it is not an assignment to the return variable, the function is not inlinable. l
* | Do not set to ref for explicit conversion and add assertion for arrayliangdzou2018-09-147-0/+67
|/ | | | type conversion. Also, add some test cases for #4901 and #4948.
* Merge pull request #4968 from ethereum/alethUpdateCompatiblechriseth2018-09-142-31/+22
|\ | | | | Fix tests for newer versions of aleth.
| * Disable blockhash test for constantinople due to changes between aleth versions.Daniel Kirchner2018-09-131-29/+20
| |
| * Use "pending", not "latest" during ``eth_call`` in ``sendMessage``.Daniel Kirchner2018-09-131-2/+2
| |
* | Merge pull request #4911 from ethereum/addressPayableDaniel Kirchner2018-09-1334-7/+1434
|\ \ | |/ |/| Payable and non-payable address type.
| * Add ``stateMutability`` field to JSON AST for ``address`` types.Daniel Kirchner2018-09-133-0/+1171
| |
| * Add payable and non-payable state mutability to AddressType.Daniel Kirchner2018-09-1331-7/+263
| |
* | give more information (at most 35 chars before and after) for too long linesliangdzou2018-09-1313-2/+82
|/ | | | | | | | | | | | | | | | | | | | | | | | add tests for giving more informations for too long lines add edge tests for giving more informations for too long lines avoid printing out tailing white space update test case after avoiding printing out trailing whitespace update test case for removing the pre-release warning from reference refactor the code to if-else flavor rename folder to cmdlineErrorReports under test rename folder to cmdlineErrorReports under test ignore whitespace for reference files avoiding to modify the file stderr_path by call sed without -i option print ' ...' instead of ' ... ' at the end of a line
* Update test suite to use address payable.Daniel Kirchner2018-09-1226-67/+121
|
* Accept ``address payable`` during parsing.Daniel Kirchner2018-09-1119-1/+224
|
* Update bug description, add regex and tests.chriseth2018-09-101-0/+34
|
* Tests.chriseth2018-09-101-0/+40
|
* Merge pull request #4912 from ethereum/fixNewlinechriseth2018-09-101-0/+106
|\ | | | | Fix bugs in comments.
| * Tests.chriseth2018-09-061-0/+98
| |
| * This fixes several bugs with regards to line breaks and comments:chriseth2018-09-061-0/+8
| | | | | | | | | | | | | | | | | | | | | | - any unicode line break (line feed, vertical tab, form feed, carriage return, NEL, LS and PS) is considered to terminate a single-line comment. The line break itself is considered to be the next token after the comment, leading to a parser error if it is not an ascii character (i.e. for NEL, LS and PS). - unterminated multiline comments are considered illegal tokens - '/** /' is considered an unterminated multiline comment (previously, whitespace was allowed before the last '/'
* | Buglist check script supports json pathsLeonardo Alt2018-09-072-21/+155
|/
* Merge pull request #4872 from bakaoh/issue4716chriseth2018-09-061-0/+8
|\ | | | | Crash when array index value is too large
| * Fix #4716: Crash when array index value is too largebakaoh2018-09-051-0/+8
| |
* | Split IntegerType into IntegerType and AddressType.Daniel Kirchner2018-09-051-2/+2
| |
* | Merge pull request #4590 from ethereum/msgValueModifierchriseth2018-09-057-1/+39
|\ \ | | | | | | Warn if modifier uses msg.value in non-payable function
| * | Fix endToEnd testLeonardo Alt2018-09-041-0/+10
| | |
| * | Turn warning into error.chriseth2018-09-043-3/+3
| | |
| * | Warns if modifier uses msg.value in non-payable function.Erik Kundt2018-09-045-0/+28
| |/
* | Merge pull request #4895 from ethereum/abidecodesinglechriseth2018-09-052-0/+12
|\ \ | | | | | | Fix abi.decode returning single value.
| * | Fix abi.decode returning single value.chriseth2018-09-052-0/+12
| | |
* | | Merge pull request #4866 from bakaoh/issue4743chriseth2018-09-0538-45/+45
|\ \ \ | | | | | | | | Fix#4743: Incorrect source location for nameless parameters
| * | | Update test to correct source location for nameless parametersbakaoh2018-08-3138-45/+45
| | |/ | |/|
* | | Merge pull request #4880 from ethereum/fix_cmdlineTest_tmpdirchriseth2018-09-051-13/+13
|\ \ \ | |_|/ |/| | Rename TMPDIR to SOLTMPDIR in cmdlineTests
| * | mktemp might use variable TMPDIR. Renaming it in our script to avoid conflicts.Leonardo Alt2018-09-031-13/+13
| |/
* | Merge pull request #4888 from ↵chriseth2018-09-045-0/+58
|\ \ | | | | | | | | | | | | ethereum/disallow_single_statement_vardecl_if_while_for Disallow single statement var decl in if/while/for without blocks
| * | Changed error message and added testsLeonardo Alt2018-09-045-0/+58
| |/
* | Add another end-to-end test.Daniel Kirchner2018-09-041-0/+127
| |
* | Update compilation tests.Daniel Kirchner2018-09-044-16/+11
| |
* | Add return data to bare calls.Daniel Kirchner2018-09-0410-92/+212
| |
* | Remove trailing whitespace for all files in the repository.Daniel Kirchner2018-09-042-6/+6
|/
* Dynamic type as mapping key returns error instead of assertion failLeonardo Alt2018-08-166-0/+34
|
* Merge pull request #4822 from ethereum/addressStaticCallchriseth2018-08-163-1/+120
|\ | | | | Add ``staticcall`` to ``address``.
| * Add syntax test for ``address.staticcall.value``.Daniel Kirchner2018-08-151-0/+15
| |
| * Add view pure checker tests for ``address.staticcall(...)``.Daniel Kirchner2018-08-151-1/+20
| |
| * Add ``staticcall`` to ``address``.Daniel Kirchner2018-08-152-0/+85
| |
* | Review suggestionsLeonardo Alt2018-08-153-3/+3
| |
* | Add end to end testsLeonardo Alt2018-08-151-0/+203
| |
* | Disallow indexed reference types in events when using ABIEncoderV2Leonardo Alt2018-08-156-0/+41
|/
* Merge pull request #4390 from ethereum/abidecodechriseth2018-08-159-0/+264
|\ | | | | Add abi.decode
| * Add abi.decode(bytes data, (...))chriseth2018-08-159-0/+264
| |
* | Merge pull request #4583 from ethereum/nested_array_library_changelogchriseth2018-08-152-0/+114
|\ \ | | | | | | Bugfix Changelog entry regarding nested arrays returned by library functions
| * | Update bug list and add regular expression to bug list and add test.Leonardo Alt2018-08-142-0/+114
| | |
* | | Fixes #4718: High CPU usage when using large variable namesbakaoh2018-08-153-0/+15
| |/ |/|
* | Merge pull request #4738 from ethereum/dataloc_mergedchriseth2018-08-1580-126/+318
|\ \ | | | | | | Enforce data location.
| * | Update external tests.chriseth2018-08-159-23/+23
| | |
| * | Update tests.chriseth2018-08-1562-113/+179
| | |
| * | New test cases.mingchuan2018-08-1520-0/+126
| | |
| * | Update testsChase McDermott2018-08-158-39/+39
| | |
* | | Merge pull request #4542 from aarlt/constructor_natspecchriseth2018-08-151-0/+125
|\ \ \ | |/ / |/| | Fix: natspec annotations on constructors
| * | Fix: natspec annotations on constructorsAlexander Arlt2018-08-091-0/+125
| | | | | | | | | | | | - natspec annotations on constructore where ignored.
* | | Merge pull request #4765 from ethereum/fixes-issue-4673chriseth2018-08-141-0/+4
|\ \ \ | | | | | | | | [WIP] Fixes issue where computing storage size for a number would take too long (or even cause a crash).
| * | | Fixes issue where computing storage size for a number would take too long.Christian Parpart2018-08-141-0/+4
| | | | | | | | | | | | | | | | Fixes #4673.
* | | | Add implicit convertibility to function pointer with higher state mutabilityJesse Busman2018-08-144-0/+178
| | | |
* | | | Merge pull request #4788 from ethereum/noWarnDocchriseth2018-08-141-24/+49
|\ \ \ \ | | | | | | | | | | Test that documentation does not contain any warnings.
| * | | | Also extract tests that do not start with a pragma.chriseth2018-08-141-1/+9
| | | | |
| * | | | Test that documentation does not contain any warnings.chriseth2018-08-141-24/+41
| | |_|/ | |/| |
* | | | Merge pull request #4782 from ethereum/encodePackedArrayOfStructschriseth2018-08-142-0/+19
|\ \ \ \ | | | | | | | | | | Encode packed array of structs
| * | | | Tests.chriseth2018-08-102-0/+19
| | |/ / | |/| |
* | | | Adds support for structs in interfaces.Christian Parpart2018-08-142-3/+62
| |/ / |/| | | | | | | | Closes #4733.
* | | Replace safety stop by invalidLeonardo Alt2018-08-143-6/+6
| | |
* | | Merge pull request #4799 from ethereum/semanticsTestsGasEtAlchriseth2018-08-145-0/+122
|\ \ \ | | | | | | | | Semantics tests for ``gasleft()``, ``blockhash()`` ``tx.gasprice`` and ``block.gaslimit``
| * | | Fix tests for constantinople (expect zero for the time being).Daniel Kirchner2018-08-141-9/+22
| | | |
| * | | Add missing tests for ``gasleft()``, ``blockhash()`` ``tx.gasprice`` and ↵Daniel Kirchner2018-08-145-0/+109
| | | | | | | | | | | | | | | | ``block.gaslimit``.
* | | | Merge pull request #4777 from ethereum/typeConversionMemorychriseth2018-08-143-2/+7
|\ \ \ \ | |/ / / |/| | | Defaul data location for type conversions is memory.
| * | | Defaul data location for type conversions is memory.chriseth2018-08-133-2/+7
| | | |
* | | | Merge pull request #4798 from ethereum/mappingArgumentsAndReturnschriseth2018-08-1333-5/+428
|\ \ \ \ | | | | | | | | | | Mapping arguments and returns
| * | | | Add tests for mappings in function types.Daniel Kirchner2018-08-134-0/+20
| | | | |
| * | | | Allow mappings of arrays as arguments and return values of internal functions.Daniel Kirchner2018-08-1312-0/+100
| | | | |
| * | | | Consider mappings return values in control flow analysis.Daniel Kirchner2018-08-134-0/+20
| | | | |
| * | | | Allow mapping arguments and return values in all internal functions.Daniel Kirchner2018-08-134-9/+56
| | | | |
| * | | | Allow mapping arguments and return values in internal library functions.Daniel Kirchner2018-08-1313-0/+236
| |/ / /
* | | | Merge pull request #4696 from ethereum/byteLiteralConversionchriseth2018-08-1319-79/+262
|\ \ \ \ | |/ / / |/| | | Disallow ambiguous implicit and explicit conversions from number literals to bytesXX
| * | | Disallow ambiguous conversions between number literals and bytesXX types.Daniel Kirchner2018-08-1319-79/+262
| |/ /
* / / Disallow remappings with empty prefix.Daniel Kirchner2018-08-112-5/+13
|/ /
* | Merge pull request #4783 from elopio/test/function-call-syntactical-equalitychriseth2018-08-091-1/+27
|\ \ | | | | | | tests: add yul simplifier not applied with function calls
| * | tests: add yul simplifier not applied with function callsLeo Arias2018-08-091-1/+27
| | |
* | | Fixes compilation under MSVC.Christian Parpart2018-08-091-24/+25
|/ /
* | Rename FunctionKind SHA3 to KECCAK256 (as the instruction was renamed in ↵Alex Beregszaszi2018-08-091-4/+4
| | | | | | | | libevmasm)
* | Merge pull request #4772 from ethereum/asm-jsonAlex Beregszaszi2018-08-092-1/+180
|\ \ | |/ |/| Add tests for the assembler object (and avoid misusing string{} for u256)
| * Test for legacyAssembly in StandardCompilerAlex Beregszaszi2018-08-091-1/+29
| |
| * Add tests for the assembler objectAlex Beregszaszi2018-08-091-0/+151
| |
* | Merge pull request #4684 from ethereum/underscores_in_numeric_literalschriseth2018-08-098-0/+158
|\ \ | |/ |/| [BREAKING] Underscores in numeric literals
| * Cleanup & polish numbers-with-underscores parsing, also improving tests.Christian Parpart2018-08-088-135/+111
| |
| * Add stricter hex underscore rulesBalajiganapathi S2018-08-082-1/+17
| |
| * Allow underscores in numbers.Balajiganapathi S2018-08-081-0/+166
| |
* | Merge pull request #4769 from ethereum/inlineasm-overloading-resolutionAlex Beregszaszi2018-08-091-0/+11
|\ \ | | | | | | Provide nicer error message when referencing overloaded references
| * | Provide nicer error message when referencing overloaded referencesAlex Beregszaszi2018-08-081-0/+11
| | |
* | | Merge pull request #4753 from mattaereal/boost-to-string-patchAlex Beregszaszi2018-08-083-8/+6
|\ \ \ | |/ / |/| | Replace boost:lexical_cast<std::string> for std::to_string.
| * | Removing std:: from std::to_string and include for boost/lexical_castMatías Aereal Aeón2018-08-083-8/+6
| | |
* | | Remove experimental 0.5.0 pragmaAlex Beregszaszi2018-08-081-2/+1
| | |
* | | Merge pull request #4740 from ethereum/enforceNumberOfReturnValueschriseth2018-08-0811-37/+95
|\ \ \ | | | | | | | | Disallow empty return in function with return arguments.
| * | | Add back lost test case to a more reasonable location.Daniel Kirchner2018-08-081-0/+3
| | | |
| * | | Adjust return expressions in compilation tests.Daniel Kirchner2018-08-082-9/+8
| | | |
| * | | Update and extend tests for return expressions.Daniel Kirchner2018-08-088-28/+84
| | | |
* | | | Merge pull request #4589 from sifmelcara/fix/dynamic-link-boost-testAlex Beregszaszi2018-08-082-0/+19
|\ \ \ \ | | | | | | | | | | Fix shared boost test library build by customizing main
| * | | | Define BOOST_TEST_DYN_LINK for building soltest if Boost_USE_STATIC_LIBS is ↵Daniel Kirchner2018-08-021-0/+4
| | | | | | | | | | | | | | | | | | | | not set.
| * | | | Fix shared boost test library build by customizing mainmingchuan2018-08-021-0/+15
| | |/ / | |/| |
* | | | Merge pull request #4737 from ethereum/isoltestEarlyExitchriseth2018-08-081-13/+22
|\ \ \ \ | | | | | | | | | | Return from main if quit was requested during a sub-testsuite.
| * | | | Initialize ``TestTool::m_formatted``.Daniel Kirchner2018-08-081-1/+1
| | | | |
| * | | | Always count all test cases in isoltest and exit early on user request.Daniel Kirchner2018-08-081-12/+21
| | |/ / | |/| |
* | | | Merge pull request #4749 from elopio/test/yul-simplifier-not-appliedchriseth2018-08-081-0/+10
|\ \ \ \ | | | | | | | | | | tests: add yul simplifier not applied
| * | | | tests: add yul simplifier not appliedLeo Arias2018-08-081-0/+10
| | |_|/ | |/| |
* | | | Merge pull request #4736 from ethereum/removeFillRightAlex Beregszaszi2018-08-083-20/+11
|\ \ \ \ | |/ / / |/| | | Remove remaining instances of ``fillRight``.
| * | | Remove remaining instances of ``fillRight`` left over from tuple wildcards ↵Daniel Kirchner2018-08-083-20/+11
| |/ / | | | | | | | | | assignments.
* | | Merge pull request #4703 from ethereum/solc-fix-double-quoting-path-nameschriseth2018-08-081-0/+50
|\ \ \ | |/ / |/| | solc: Fixes double-quoting path names on stderr.
| * | solc: Fixes double-quoting path names on stderr and adds tests for it.Christian Parpart2018-08-071-0/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before it was possible to get a failure message, such as: ""notfound.sol"" is not found whereas it should be: "notfound.sol" is not found.
* | | Merge pull request #4731 from ethereum/interface-enumchriseth2018-08-077-1/+92
|\ \ \ | | | | | | | | Allow enums in interfaces
| * | | Add endToEnd test for referencing enumsAlex Beregszaszi2018-08-071-0/+44
| | | |
| * | | Add more syntax tests for enums and interfaces/librariesAlex Beregszaszi2018-08-075-0/+48
| | | |
| * | | Allow enums in interfacesAlex Beregszaszi2018-08-071-1/+0
| | | |
* | | | Merge pull request #4720 from ethereum/abi-rational-type-identifierAlex Beregszaszi2018-08-072-0/+39
|\ \ \ \ | | | | | | | | | | Fix type identifiers for RationalNumberType (on negative numbers)
| * | | | Add test for abi.encode (negative) literalsAlex Beregszaszi2018-08-071-0/+36
| | | | |
| * | | | Fix type identifiers for RationalNumberTypeAlex Beregszaszi2018-08-071-0/+3
| |/ / /
* | | | Merge pull request #4729 from ethereum/slot-on-non-storageAlex Beregszaszi2018-08-071-0/+9
|\ \ \ \ | |/ / / |/| | | Properly handle invalid references used together with _slot and _offset.
| * | | More precise error message if using non-variables with _slot/_offsetAlex Beregszaszi2018-08-071-1/+1
| | | |
| * | | Properly handle invalid references used together with _slot and _offset.Alex Beregszaszi2018-08-071-0/+9
| | | |
* | | | Merge pull request #4695 from ethereum/test-natspecchriseth2018-08-071-25/+26
|\ \ \ \ | |/ / / |/| | | Be explicit about which contract to test for in the Natspec tests
| * | | Be explicit about which contract to test for in the Natspec testsAlex Beregszaszi2018-08-061-25/+26
| | | |
* | | | Merge pull request #4724 from ethereum/slot-in-assemblyAlex Beregszaszi2018-08-072-0/+18
|\ \ \ \ | | | | | | | | | | Do not crash on using _slot and _offset suffixes on their own
| * | | | Do not crash on using _slot and _offset suffixes on their ownAlex Beregszaszi2018-08-072-0/+18
| | |/ / | |/| |
* / | | Remove clone feature.chriseth2018-08-071-1/+1
|/ / /
* | | Merge pull request #4694 from ethereum/test-abijsonchriseth2018-08-071-31/+31
|\ \ \ | | | | | | | | Be explicit about which contract to test for in ABIJSON tests
| * | | Be explicit about which contract to test for in ABIJSON testsAlex Beregszaszi2018-08-061-31/+31
| |/ /
* | | Merge pull request #4663 from ethereum/dropConstantASTchriseth2018-08-0720-48/+0
|\ \ \ | | | | | | | | [BREAKING] Drop constant field from JSON AST
| * | | Update tests.Daniel Kirchner2018-08-0620-48/+0
| | | |
* | | | Tests for deriving types for empty string.chriseth2018-08-061-0/+38
| | | |
* | | | Merge pull request #4689 from ethereum/cleanup-050-testschriseth2018-08-0623-106/+11
|\ \ \ \ | |_|/ / |/| | | Cleanup 0.5.0 test cases
| * | | Cleanup 0.5.0 test casesAlex Beregszaszi2018-08-0623-106/+11
| | | |
* | | | Merge pull request #4671 from ethereum/mappingTupleAssignmentchriseth2018-08-068-12/+144
|\ \ \ \ | |/ / / |/| | | Disallow assignments to mappings within tuple assignments; allow for local variables.
| * | | Additional semantics test cases.Daniel Kirchner2018-08-031-0/+45
| | | |
| * | | Allow assignments to local variables of mapping types.Daniel Kirchner2018-08-035-4/+57
| | | |
| * | | Disallow assignments to mappings within tuple assignments.Daniel Kirchner2018-08-034-12/+46
| | | |
* | | | Merge pull request #4644 from ethereum/event_struct_errorchriseth2018-08-068-0/+28
|\ \ \ \ | | | | | | | | | | Disallow structs in events without ABIEncoderV2
| * | | | Disallow structs in events without ABIEncoderV2Leonardo Alt2018-08-038-0/+28
| |/ / /
* | | | Merge pull request #4681 from ethereum/var-suggestion-crashchriseth2018-08-061-0/+12
|\ \ \ \ | |_|/ / |/| | | Fix declaration suggestion for var with different number of components
| * | | Fix declaration suggestion for var with different number of componentsAlex Beregszaszi2018-08-041-0/+12
| |/ /
* | | Merge pull request #4677 from ethereum/jsonAstTestExtractionchriseth2018-08-0658-473/+5054
|\ \ \ | | | | | | | | JSON AST test extraction
| * | | Extract AST JSON tests.Daniel Kirchner2018-08-0454-470/+4753
| | | |
| * | | Infrastructure for extracting JSON AST tests.Daniel Kirchner2018-08-045-4/+302
| |/ /
* | | Merge pull request #4412 from ethereum/v050-reference-resolver-errorTypeForLooseChristian Parpart2018-08-0417-212/+29
|\ \ \ | | | | | | | | [BREAKING] permanently set errorTypeForLoose from Warning to SyntaxError
| * | | Drops tests for inline assembly jumps and function access as both isn't ↵Christian Parpart2018-08-021-46/+0
| | | | | | | | | | | | | | | | possible anymore.
| * | | Drop swap_peephole_optimization test from EndToEndTestsChristian Parpart2018-08-021-44/+0
| | | | | | | | | | | | | | | | Already covered by libevmasm/Optimiser: peephole_noncommutative_swap1, peephole_commutative_swap1 and peephole_swap_comparison
| * | | Update tests to remove support for loose assemblyChristian Parpart2018-08-0210-81/+24
| | | |
| * | | Disallow loos assembly in Solidity by permanently setting it to SyntaxError ↵Christian Parpart2018-08-0212-47/+11
| | |/ | |/| | | | | | | (from Warning)
* | | Merge pull request #4662 from evgeniuz/developAlex Beregszaszi2018-08-031-0/+18
|\ \ \ | |_|/ |/| | added helper function that joins vectors of strings
| * | added helper function that joins vectors of strings, refactored suggestions ↵Evgeniy Filatov2018-08-031-0/+18
| |/ | | | | | | formattingi function to use it
* / Turn warning about uninitialized storage returns into an error.Daniel Kirchner2018-08-0321-178/+178
|/
* Merge pull request #4646 from ethereum/smt_model_secondary_locationAlex Beregszaszi2018-08-021-1/+1
|\ | | | | SMT model is sorted and printed as secondary location
| * SMT model variables are sorted and printed as secondary source locationLeonardo Alt2018-08-021-1/+1
| |
* | Merge pull request #4399 from ethereum/contractWhitespaceAlex Beregszaszi2018-08-0243-792/+792
|\ \ | |/ |/| Remove trailing whitespace in all contract files.
| * Remove trailing whitespace in all contract files.Daniel Kirchner2018-08-0243-792/+792
| |
* | Add additional test cases.Daniel Kirchner2018-08-012-0/+10
| |
* | Do not exclude public state variables when looking for conflicting declarations.Daniel Kirchner2018-08-014-0/+27
|/
* Merge pull request #4378 from ethereum/noBaseWithoutArgumentsAlex Beregszaszi2018-08-012-1/+10
|\ | | | | [BREAKING] Disallow calling base constructors without arguments.
| * Correctly determine whether base constructor is called without parentheses.chriseth2018-08-011-0/+9
| |
| * Disallow calling base constructors without arguments.chriseth2018-08-011-1/+1
| |
* | Adds positive/negative tests for checking error on cyclic dependency checker ↵Christian Parpart2018-08-014-0/+791
|/ | | | exhaustion
* Fix tests regarding contract type conversion.chriseth2018-08-0116-34/+35
|
* Disallow conversion between unrelated contract types.chriseth2018-08-0111-8/+72
|
* Merge pull request #4507 from ethereum/v050-var-keyword-trace-removalsAlex Beregszaszi2018-08-015-0/+40
|\ | | | | Ensures an empty use of var keyword is caught with the proper non-fatal error message
| * Ensures an empty use of var keyword is caught with the proper error message.Christian Parpart2018-08-015-0/+40
| |
* | Merge pull request #4625 from ethereum/pragma-cleanupAlex Beregszaszi2018-07-316-20/+12
|\ \ | | | | | | Remove unnecessary or stray version pragmas
| * | Replace stray solidity pragma with progamatically inserting it in ↵Alex Beregszaszi2018-07-311-4/+2
| | | | | | | | | | | | SolidityOptimizer test
| * | Remove unnecesary version pragma from some syntax testsAlex Beregszaszi2018-07-315-16/+10
| | |
* | | Fix crash when FunctionType has undeclared type as parameterLeonardo Alt2018-07-317-11/+36
|/ /
* | Replace dev::eth namespace with dev::lll in LLLAlex Beregszaszi2018-07-285-8/+8
| |
* | Merge pull request #4556 from ethereum/library-data-locationsAlex Beregszaszi2018-07-266-0/+22
|\ \ | | | | | | Add tests for data locations within libraries
| * | Add tests for data locations within librariesAlex Beregszaszi2018-07-256-0/+22
| | |
* | | Merge pull request #4561 from ethereum/scanner-testsAlex Beregszaszi2018-07-261-1/+18
|\ \ \ | | | | | | | | Add comprehensive tests for the scanner
| * | | Scanner tests for all shiftsAlex Beregszaszi2018-07-251-1/+10
| | | |
| * | | Scanner tests for all escapesAlex Beregszaszi2018-07-251-0/+8
| |/ /
* | | Merge pull request #4562 from ethereum/parser-testsAlex Beregszaszi2018-07-2512-0/+61
|\ \ \ | | | | | | | | Add comprehensive tests for the parser
| * | | Add syntax tests for import statementsAlex Beregszaszi2018-07-255-0/+15
| | | |
| * | | Add syntax test for illegal pragma keyAlex Beregszaszi2018-07-251-0/+4
| | | |
| * | | Add syntax test for location specifier redeclarationsAlex Beregszaszi2018-07-253-0/+23
| | | |
| * | | Add syntax test for empty emit statementAlex Beregszaszi2018-07-251-0/+7
| | | |
| * | | Add syntax tests for assembly block type (evmasm)Alex Beregszaszi2018-07-252-0/+12
| |/ /
* | | Fix upstream issues in stringutilsAlex Beregszaszi2018-07-251-1/+1
| | |
* | | Update stringutils to upstream 3c63f18Alex Beregszaszi2018-07-251-98/+104
| | |
* | | Add more tests for inlineasm/AsmAnalyzerAlex Beregszaszi2018-07-255-0/+60
| | |
* | | Add more comprehensive tests for embedded inline assembly LValue/RValue accessAlex Beregszaszi2018-07-257-0/+74
|/ /
* | Merge pull request #4572 from ethereum/cmake-boost-testsAlex Beregszaszi2018-07-251-1/+1
|\ \ | | | | | | Do not include single-header boost_unit_test
| * | Do not include single-header boost_unit_testPaweł Bylica2018-07-251-1/+1
| | | | | | | | | | | | | | | | | | Do not mix 2 different usage variants of boost_unit_test. If you link with static libs do not include the single-header variant. See https://www.boost.org/doc/libs/1_67_0/libs/test/doc/html/boost_test/usage_variants.html#boost_test.usage_variants.single_header
* | | Merge pull request #4554 from ethereum/indexing-testsAlex Beregszaszi2018-07-256-0/+46
|\ \ \ | | | | | | | | Add comprehensive syntax tests for indexed access
| * | | Add comprehensive syntax tests for indexed accessAlex Beregszaszi2018-07-256-0/+46
| |/ /
* / / More consistent catch statementsAlex Beregszaszi2018-07-251-1/+1
|/ / | | | | | | Also take const& in all cases.
* | Add syntax tests for unknown / invalid pragmaAlex Beregszaszi2018-07-252-0/+6
| |
* | Merge pull request #4527 from ethereum/mappingEnforceStorageAlex Beregszaszi2018-07-249-10/+37
|\ \ | | | | | | Enforces explicit data location for mappings
| * | Enforces data location of local mappings to storage.Erik Kundt2018-07-249-10/+37
| | |
* | | Disallow functions without implementation to use modifiers. This was already ↵Christian Parpart2018-07-242-3/+3
| |/ |/| | | | | the case in the experimental 0.5.0 mode.
* | Merge pull request #4439 from ethereum/address_memberschriseth2018-07-1925-144/+45
|\ \ | | | | | | [BREAKING] Enforce address members not accessible by contract instance
| * | Changes in ExpressionCompilerLeonardo Alt2018-07-191-0/+6
| | |
| * | Removing tests that are not useful anymoreLeonardo Alt2018-07-183-43/+0
| | |
| * | Add suggestion to error messageLeonardo Alt2018-07-1712-12/+12
| | |
| * | Address members not accessible by contract instanceLeonardo Alt2018-07-1724-104/+42
| | |
* | | Adds warning if function is shadowing a contract.Erik Kundt2018-07-182-5/+10
| | |
* | | Adjusts syntax tests to new constructor syntax.Erik Kundt2018-07-1829-116/+3
| |/ |/|
* | Adds comment about reasoning behind syntax test.Erik Kundt2018-07-181-3/+5
| |
* | Removes obsolete syntax tests.Erik Kundt2018-07-182-10/+0
| |
* | Suggests external for fallback and interface functions.chriseth2018-07-187-6/+16
| |
* | Adjusts tests to expect type errors on default visibility.Erik Kundt2018-07-187-18/+7
|/
* Merge pull request #4463 from ethereum/isoltest-colors-on-windowsChristian Parpart2018-07-171-0/+26
|\ | | | | isoltest: adds support for properly handling ANSI escape sequences on Windows
| * isoltest: adds support for properly handling ANSI escape sequences on ↵Christian Parpart2018-07-161-0/+26
| | | | | | | | Win32/Win64 builds.
* | Add missing period in the end of error messagesLeonardo Alt2018-07-1633-33/+33
| |
* | Merge pull request #4481 from ethereum/disallow-throwchriseth2018-07-1629-124/+107
|\ \ | | | | | | [BREAKING] Deprecate the throw statement
| * | Replace throw with revert() in compilation testsAlex Beregszaszi2018-07-1623-92/+92
| | |
| * | Replace throw with revert() in end-to-end testsAlex Beregszaszi2018-07-163-14/+14
| | |
| * | Deprecate the throw statementAlex Beregszaszi2018-07-163-18/+1
| | |
* | | Fixes end-to-end tests.Erik Kundt2018-07-164-16/+16
| | |
* | | Moves unit test from initial branch.Erik Kundt2018-07-161-18/+18
| | |
* | | Specifies visibility in syntax test.Erik Kundt2018-07-161-3/+3
| | |
* | | Specifies visibility in unit tests.Erik Kundt2018-07-169-150/+150
|/ /
* | Merge pull request #4500 from ethereum/v050-interface-functions-must-be-externalchriseth2018-07-1610-15/+11
|\ \ | | | | | | [BREAKING] interface functions must be external
| * | enforce interface-functions to be external-declaredChristian Parpart2018-07-1610-15/+11
| |/ | | | | | | | | | | | | | | - libsolidity: Enforce interface-functions must be external-declared. - Changelog adapted to reflect changes wrt. functions in interfaces. - test: Adjustments according to prior interface-function changes. - tests: Adapting SolidityEndToEndTest to interface-function change. - docs: Adapted documentation to interface-function change.
* | Added default data locations to parameters for end to end tests.Chase McDermott2018-07-1611-240/+240
| |
* | Added default data locations to docs and other external tests.Chase McDermott2018-07-1526-74/+74
|/
* Merge pull request #4438 from ethereum/address_members_external_tests_docschriseth2018-07-138-9/+9
|\ | | | | Address members used by contracts: update external tests and docs
| * Update external tests and docsLeonardo Alt2018-07-128-9/+9
| |
* | Merge pull request #4501 from ethereum/recursiveStructsWithFixedArrayschriseth2018-07-1312-0/+139
|\ \ | | | | | | Consider fixed-size arrays when checking for recursive structs.
| * | Add test cases.Daniel Kirchner2018-07-1312-0/+139
| | |
* | | Update tests.Daniel Kirchner2018-07-1322-103/+177
|/ /
* | Merge pull request #4437 from ethereum/report-empty-var-declschriseth2018-07-133-0/+22
|\ \ | | | | | | [BREAKING] Report empty var tuple decls
| * | Generates a syntax error when declaring a variable declaration's LHS has no ↵Christian Parpart2018-07-123-0/+22
| | | | | | | | | | | | named components
* | | Merge pull request #4478 from ethereum/requireStorageLocationchriseth2018-07-1320-68/+53
|\ \ \ | |/ / |/| | Turn missing storage locations into an error.
| * | Update compilation tests wrt requiring storage locations.Daniel Kirchner2018-07-124-12/+12
| | |
| * | Update test wrt requiring storage locations.Daniel Kirchner2018-07-1216-56/+41
| |/
* | Merge pull request #4428 from ethereum/enforce_staticcall_viewchriseth2018-07-121-1/+37
|\ \ | | | | | | [BREAKING] Enforce STATICCALL for view and pure
| * | Use STATICCALL for view and pureLeonardo Alt2018-07-111-1/+37
| | |
* | | Merge pull request #4083 from ethereum/variable_stack_slotchriseth2018-07-121-2/+316
|\ \ \ | |_|/ |/| | [BREAKING] Allocate local variables according to their scope
| * | Change test from public to externalLeonardo Alt2018-07-111-1/+1
| | |
| * | Added assertion and tests suggestionsLeonardo Alt2018-07-111-5/+13
| | |
| * | Add more tests and assertionsLeonardo Alt2018-07-111-1/+153
| | |
| * | Added tests and review suggestionsLeonardo Alt2018-07-111-0/+154
| | |
* | | Added default data locations to parameters for syntax tests.Chase McDermott2018-07-1238-83/+83
| | |
* | | Merge pull request #4461 from ethereum/fuzzer-fixchriseth2018-07-121-0/+4
|\ \ \ | | | | | | | | Catch the proper exceptions in solfuzzer
| * | | Catch the proper exceptions in solfuzzerAlex Beregszaszi2018-07-121-0/+4
| | | |
* | | | Merge pull request #4443 from ethereum/double_var_decl_fixchriseth2018-07-123-0/+34
|\ \ \ \ | |/ / / |/| | | Fix crash when declaring the same var twice in the same scope
| * | | Fix crash for double variable declaration in the same scope.Leonardo Alt2018-07-113-0/+34
| |/ /
* | | Merge pull request #4480 from ethereum/fixZeroWithExponentchriseth2018-07-122-23/+29
|\ \ \ | | | | | | | | Fix literals with exponents with mantissa of zero.
| * | | Split test case into failing and succeeding case.Daniel Kirchner2018-07-112-24/+29
| | | |