Idris2/tests
Johann Rudloff 2477d060a8 Use sysctl instead of nproc to get number of processors on FreeBSD
On FreeBSD `nproc` is not available in a standard installation, so the
equivalent `sysctl -n hw.ncpu` is used.
2021-05-13 18:27:57 +01:00
..
base Use sysctl instead of nproc to get number of processors on FreeBSD 2021-05-13 18:27:57 +01:00
chez [ new ] Add chez-sep codegen (#1359) 2021-05-11 08:20:19 +01:00
codegen [ breaking ] making toList part of Foldable (#1395) 2021-05-11 08:26:00 +01:00
contrib/json_001 [ fix ] broken unicode parsing in JSON 2021-04-22 10:59:14 +01:00
gambit/bitops001 Add Data.Bits to base (#1033) 2021-03-04 20:59:56 +00:00
ideMode [ fix ] Handle ambiguous DPair/MkDPair 2021-05-13 18:26:06 +01:00
idris2 [ breaking ] making toList part of Foldable (#1395) 2021-05-11 08:26:00 +01:00
node [ fix #801 ] Use Number for up to 32 bit integers on JS backends (#1375) 2021-05-10 12:17:09 +01:00
prelude/reg001 Restore Bool operators precedence 2020-07-18 05:49:35 -07:00
racket Patch CVs and sleep in Racket (#1059) 2021-03-15 13:43:12 +00:00
refc [ new ] support record projections in refc backend (#1054) 2021-02-15 10:35:46 +00:00
templates fixed whitespace for *.idr,*.ipkg,*.tex,*.yaff, and *.lidr 2021-01-22 15:08:49 +00:00
ttimp [ fix #1370 ] use the lambda's type for eta-expansion 2021-05-10 12:13:29 +01:00
typedd-book Semantic highlighting (#1335) 2021-05-10 09:05:43 +01:00
Main.idr [ test ] cosmetic changes & retest capability (#1394) 2021-05-11 09:46:21 +01:00
Makefile Use sysctl instead of nproc to get number of processors on FreeBSD 2021-05-13 18:27:57 +01:00
README.md Test templates (#585) 2020-11-27 15:40:02 +00:00
tests.ipkg Set PREFIX for tests 2021-04-19 11:23:58 +01: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.

Templates for common test instances can be found in the templates folder.