3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-12-31 16:29:53 +00:00

Undo more changes that slipped in from somewhere? a merge maybe?

This commit is contained in:
Gus Smith 2025-11-29 15:28:34 -08:00
parent ade6379345
commit e223087578
2 changed files with 1 additions and 21 deletions

View file

@ -79,26 +79,6 @@ compiler versions. For up to date information, including OS versions, refer to
.. _Yosys Git repo: https://github.com/YosysHQ/yosys
.. _the git actions page: https://github.com/YosysHQ/yosys/actions
Functional backend testing
--------------------------
Testing of the functional backend is controlled by the
``ENABLE_FUNCTIONAL_TESTS`` make variable. Setting it to a value of ``1``,
either when calling ``make test`` or in your ``Makefile.conf`` file, will enable
these additional tests.
.. note::
The functional backend tests requires additional prerequisites to be
installed:
- racket and z3, available via ``apt-get`` or similar.
- pytest and pytest-xdist, available via ``pip``; pytest-xdist-gnumake is
also recommended.
- rosette, available via ``raco`` (after installing racket).
.. todo:: are unit tests currently working
..
How to add a unit test
----------------------

View file

@ -1,2 +1,2 @@
#!/usr/bin/env bash
pytest -v -n auto "$@" --steps 100
pytest -v -m "not smt and not rkt" "$@"