Idris2-boot/tests
Guillaume Allais 4cbb02b6b3 [ fix ] properly nesting multiline comments
We should be able to comment out any part of a program that parses
and still get a program that parses. This means we need to properly
ignore `{-` and `-}` when hidden behind a `--` comment or inside of
a string literal.
2020-04-01 12:52:01 +01:00
..
chez Ints in buffers are 32 bit 2020-03-27 20:54:39 +00:00
ideMode Update idemode tests 2020-03-27 00:34:21 +00:00
idris2 [ fix ] properly nesting multiline comments 2020-04-01 12:52:01 +01:00
ttimp Look for scrutinee type in case 2020-03-27 14:27:33 +00:00
typedd-book Rabbit hole 2020-03-27 00:11:21 +00:00
Main.idr [ fix ] properly nesting multiline comments 2020-04-01 12:52:01 +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.