From 681323ef8aca8e107037d0063cc6b2e8e3a4f896 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Sat, 16 May 2015 12:57:58 +0200 Subject: [PATCH] Add test documentation --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 46ef183..960bb25 100644 --- a/README.md +++ b/README.md @@ -88,3 +88,21 @@ One quick start: } ``` For more examples see tests/ + +# Tests # +To run tests simply do the following: +```sh +$ cmake . +$ make +$ ctest +``` +If you want an more detailed look at the tests run the binary instead +```sh +$ cmake . +$ make +$ cd tests +$ ./clangmm_tests --log_level=all +``` +To see more log parameters see [here](http://www.boost.org/doc/libs/1_58_0/libs/test/doc/html/utf/user-guide/runtime-config/reference.html). + +