From cc1cfb9141f57d4faa04dd89650f730fe3f0cbaa Mon Sep 17 00:00:00 2001 From: Jonathon Reinhart Date: Sun, 20 Sep 2015 22:16:04 -0400 Subject: [PATCH] add information about unit tests to COMPILE.txt --- COMPILE.TXT | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/COMPILE.TXT b/COMPILE.TXT index 53d6885f..bbcb96ca 100644 --- a/COMPILE.TXT +++ b/COMPILE.TXT @@ -246,3 +246,12 @@ Unicorn requires few dependent packages as followings So far, only Python is supported by bindings in the main code. Look for the bindings under directory bindings/, and refer to README file of corresponding languages. + + +[11] Unit tests + + Automated unit tests use the cmocka unit testing framework (https://cmocka.org/). + It can be installed in most Linux distros using the package manager, e.g. + `sudo yum install libcmocka libcmocka-devel`, or you can easily build and install it from source. + + You can run the tests by running `make test` in the project directory.