update readmes

This commit is contained in:
Arya Irani 2024-04-04 11:44:12 -06:00
parent 6d3746e8bb
commit 8f9237251f
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ You'll also need to install `x509-lib` with `raco pkg install x509-lib`
To run the test suite, first `stack build` (or `stack build --fast`), then:
```
./unison-src/builtin-tests/jit-tests.sh
./unison-src/builtin-tests/jit-tests.sh $(stack exec which unison) --runtime-path <path>
```
OR if you want to run the same tests in interpreted mode:

View File

@ -1,13 +1,13 @@
# Test suite for builtins
# Test suite for builtins
Edit `tests.u` in this directory to add to the test suite. The same test suite can be run using the JIT or the interpreter, using either of the two scripts:
```bash
$ ./unison-src/builtin-tests/jit-tests.sh
$ ./unison-src/builtin-tests/jit-tests.sh $(stack exec which unison) --runtime-path <path>
```
```bash
$ ./unison-src/builtin-tests/interpreter-tests.sh
```
The scripts will fetch a copy of base and the scheme codegen library and cache it for subsequent runs.
The scripts will fetch a copy of base and the scheme codegen library and cache it for subsequent runs.