Idris2-boot/tests
Edwin Brady 819c9d7af1 Evaluate primitives (fromInteger etc)
At least as long as the number is small enough (currently set to < 100).
This is because it can open up further evaluation opportunities when
typechecking, and can make the term we're working with smaller - it also
makes display a bit neater.
Overall this makes some pathological cases of terrible performance much
better, without hurting anything else.
2020-04-23 21:21:08 +01:00
..
chez Merge branch 'master' into fix-chez-in-folder-with-spaces 2020-04-21 15:01:01 +02:00
ideMode Add a lambda lifter 2020-04-19 22:57:10 +01:00
idris2 Evaluate primitives (fromInteger etc) 2020-04-23 21:21:08 +01:00
ttimp Add tests for default implict record type arguments 2020-04-17 12:22:36 +01:00
typedd-book Rabbit hole 2020-03-27 00:11:21 +00:00
Main.idr Merge branch 'master' into fix-chez-in-folder-with-spaces 2020-04-21 15:01:01 +02:00
Makefile [ new ] interactive test runner 2020-04-06 11:06:19 +01: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.