Idris2-boot/tests
Michael Morgan e6121e0935 Remove trailing whitespace from Idris sources.
This is the result of running the command:

$ find . -name '*.idr' -type f -exec sed -i -E 's/\s+$//' {} +

I confirmed before running it that this would not affect any markdown
formatting in documentation comments.
2019-10-25 14:24:25 -07:00
..
chez Remove trailing whitespace from Idris sources. 2019-10-25 14:24:25 -07:00
ideMode Add optional version tag when build in between releases 2019-10-14 12:01:29 +06:00
idris2 Remove trailing whitespace from Idris sources. 2019-10-25 14:24:25 -07:00
ttimp allow matching constants in with clauses fix #122 2019-10-15 21:52:44 +02:00
typedd-book Remove trailing whitespace from Idris sources. 2019-10-25 14:24:25 -07:00
Main.idr Merge pull request #134 from ohad/bugfix-#109 2019-10-25 14:05:45 +01: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.