Idris2-boot/tests
Edwin Brady 9fd2e428ad Check import hashes before a full parse
This needed a bit of reorganisation, but it speeds up checking if a
module doesn't need rebuilding due to the import interfaces not
changing. Also it means that the "Type checking foo.idr" message is
displayed before parsing rather than after, which is probably better.
2020-02-10 15:47:19 +00:00
..
chez Some buffer updates 2020-01-31 16:49:31 +00:00
ideMode implement GetOptions and correctly reply nil when no holes 2019-11-11 09:28:11 +01:00
idris2 Check import hashes before a full parse 2020-02-10 15:47:19 +00:00
ttimp Simpler implementation of 'case' 2020-02-09 13:46:58 +00:00
typedd-book Better approach to erasure in pattern matching 2020-01-21 18:47:43 +00:00
Main.idr Unification tweak for getting lambda types 2020-02-09 17:05:22 +00:00
Makefile Add instructions on how to run a subset of the tests 2019-07-28 20:21:34 +02:00
README.md Add instructions on how to run a subset of the tests 2019-07-28 20:21:34 +02:00

Tests

Note: The commands listed in this section should be run from the repository's root folder.

Run all tests: make test

To run only a subset of the tests use: make test only=NAME. NAME is matched against the path to each test case.

Examples:

  • make test only=chez will run all Chez Scheme tests.
  • make test only=ttimp/basic will run all basic tests for TTImp.
  • make test only=idris2/basic001 will run a specific test.