aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/README.md
diff options
context:
space:
mode:
authorGravatar Paul Steckler <steck@stecksoft.com>2018-02-23 14:23:19 -0500
committerGravatar Gaƫtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-05-16 13:28:10 +0200
commita2f4a43833a29a5ede5905225b814c33e3a46132 (patch)
treebb2bd38286a6d51451df109e476862ab75ca65de /test-suite/README.md
parent3f480c993311d19b152deb6bb4dc561188d76fc7 (diff)
add unit tests to test suite
Diffstat (limited to 'test-suite/README.md')
-rw-r--r--test-suite/README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/test-suite/README.md b/test-suite/README.md
index 1d1195646..4572c98cf 100644
--- a/test-suite/README.md
+++ b/test-suite/README.md
@@ -73,3 +73,6 @@ When you fix a bug, you should usually add a regression test here as well.
The error "(bug seems to be opened, please check)" when running `make test-suite` means that a test in `bugs/closed` failed to compile.
There are also output tests in `test-suite/output` which consist of a `.v` file and a `.out` file with the expected output.
+
+There are unit tests of OCaml code in `test-suite/unit-tests`. These tests are contained in `.ml` files, and rely on the `OUnit`
+unit-test framework, as described at http://ounit.forge.ocamlcore.org/. Use `make unit-tests' in the unit-tests directory to run them.