aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit
Commit message (Collapse)AuthorAgeFilesLines
* testsuite/pyunit: add more tests for commentsTristan Gingold2022-11-2116-25/+311
|
* vhdl-parse: handle inside commentsTristan Gingold2022-11-211-0/+0
|
* testsuite/pyunit: add Comments.py testTristan Gingold2022-11-203-0/+93
|
* testsuite/pyunit/lsp: add a test for removing diags on closeTristan Gingold2022-06-264-0/+567
|
* testsuite/pyunit/lsp: adjust READMETristan Gingold2022-06-261-2/+2
|
* testsuite/pyunit/lsp: add a test for ghdl/ghdl-language-server#28Tristan Gingold2022-06-266-0/+714
|
* Add a readme in testsuite/pyunit/lspTristan Gingold2022-06-251-0/+45
|
* testsuite/pyunit: add a test for ghdl/ghdl-language-server#122Tristan Gingold2022-06-253-0/+610
|
* Made paths relative, so it can be launched from testsuits directory too.Patrick Lehmann2022-06-191-3/+5
|
* Enabled AMS support for all VHDL files. Added more [NOT IMPLEMENTED] rules ↵Patrick Lehmann2022-06-191-13/+9
| | | | to support VHDL-AMS code.
* Checking if all other stuff is working without sanity checks.Patrick Lehmann2022-06-181-0/+1
|
* Fixed failing sanity checks for pyGHDL.dom in coverage job.Patrick Lehmann2022-06-181-4/+3
|
* testsuite/pyunit/lsp/LanguageServer: fix pastoumarcor2021-09-231-10/+2
|
* Added concurrent (PSL) assertion.Patrick Lehmann2021-08-261-0/+4
|
* Translate sequential procedure calls.Patrick Lehmann2021-08-261-0/+1
|
* Implemented handling off null statements.Patrick Lehmann2021-08-261-0/+5
|
* Fixes due to a bug in pyVHDLModel. Name Context was used twice.Patrick Lehmann2021-08-231-4/+4
|
* Handle open in map aspects.Patrick Lehmann2021-08-231-1/+2
|
* Handle associations.Patrick Lehmann2021-08-231-5/+15
|
* Implemented handling of wait statements.Patrick Lehmann2021-08-231-4/+8
|
* Read condition, message and severity from asserts and reports.Patrick Lehmann2021-08-231-0/+5
|
* Some updates.Patrick Lehmann2021-08-231-0/+4
|
* Handle context references.Patrick Lehmann2021-08-231-7/+10
|
* Handle contexts.Patrick Lehmann2021-08-231-0/+10
|
* Handle if-statements.Patrick Lehmann2021-08-231-0/+2
|
* Extended testcase.Patrick Lehmann2021-08-231-1/+9
|
* Improved handling of ranges (e.g. via attribute names).Patrick Lehmann2021-08-231-2/+6
|
* Preparations for sequential statements.Patrick Lehmann2021-08-231-0/+20
|
* Support for concurrent procedure call.Patrick Lehmann2021-08-231-0/+3
|
* Improvements for case generate statements.Patrick Lehmann2021-08-231-1/+16
|
* Improved handling of generate statements and pretty-printing of hierarchy.Patrick Lehmann2021-08-231-6/+6
|
* Improved pretty-printing for hierarchy.Patrick Lehmann2021-08-231-2/+20
|
* Added generate statements.Patrick Lehmann2021-08-231-1/+14
|
* Handle instantiations 1/2.Patrick Lehmann2021-08-231-1/+31
|
* Adjusted to renaming in pyVHDLModel.Patrick Lehmann2021-08-231-1/+1
|
* testsuite/pyunit/lsp: xfail Test004 on non MSYS2 Windowsumarcor2021-07-181-2/+9
|
* testsuite/pyunit/lsp/LanguageServer.py: do not quote anymore uri.Tristan Gingold2021-07-071-5/+1
| | | | | The ':' after the driver letter must not be quoted on Windows. And there are no special characters (yet) in the filenames of the tests.
* pyunit/lsp/LanguageServer.py: adjust error messageTristan Gingold2021-07-071-2/+2
|
* Fixed bug in OthersAggregateElement.Patrick Lehmann2021-07-011-2/+2
|
* Simplified test code for literals.Patrick Lehmann2021-07-011-28/+31
|
* New command line interface for DOM.Patrick Lehmann2021-07-011-1/+1
|
* Added package declarations inside of declarations.Patrick Lehmann2021-07-011-1/+8
| | | | | Added PSL Default clock (dummy). Added Disconnect specification (dummy).
* Exchanged sides in asserts to the understanding of pytests actual vs. ↵Patrick Lehmann2021-07-014-16/+16
| | | | expected order.
* Improved test code.Patrick Lehmann2021-07-014-10/+10
|
* Minor changes.Patrick Lehmann2021-07-012-6/+6
|
* Renamed '[sS]ubType' to '[sS]ubtype'.Patrick Lehmann2021-07-011-0/+12
|
* Renamed '_?[nN]ame: str' to '_?[iI]dentifier: str'.Patrick Lehmann2021-07-014-7/+6
|
* Rework and fine tuning.Patrick Lehmann2021-07-012-7/+12
|
* pyGHDL: Added DLL search path for Python ≥3.8. (#1811)Patrick Lehmann2021-06-301-2/+3
| | | | | | | | | | | * Added DLL search path for Python ≥3.8. Let Windows CPython 64-bit execute GHDL in msys64/mingw64. * Fix executable name of Python based on the current environment. (cherry picked from commit 618c8149df1fa53d06cb197d65b3b10a02ae52ee) * Removed debug code.
* More DOM improvements (#1806)Patrick Lehmann2021-06-265-23/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * First try to handle names. * Reworked names. * Reworked range expressions. * Handle AttributeNames. * Added handling of file declaration and attribute declarations. * Improved error outputs. * Handle protected types. * Make black happy with ugly code. * Handle Null literal and File parameters. * File type and physical type. * Don't fail on reported syntax errors. Catch call errors into libghdl. * Improved Sanity checks for pyGHDL.dom. * Load sourcecode via Python and process in-memory. Fixed testcases. * Added package instantiations and packages with generics. * Added UseClause, AttributeSpecification and PhysicalTypes. * Improved pretty-printing. * Fixed AttributeName in subtype indication. * Get code position of IIR nodes. * Added DOMMixin into all derived classes. * Mark as not yet implemented. * Pinned pyVHDLModel version to v0.10.4. * Removed xfail in LSP test. Bumped requirement of pyVHDLModel to v0.10.4. Fixed some Codacy issues. (cherry picked from commit f64e7ed7c3d69cbf84cd60db8e9b085e90b846cb)