summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorLoic Dachary <loic@dachary.org>2014-04-02 18:22:53 +0200
committerLoic Dachary <loic@dachary.org>2014-04-02 18:22:53 +0200
commit81f4bdd6f5ded33d18ef55c01f9c4edb196e41bf (patch)
tree5c4f7367b7c6d81a6270ca48079031341b4dc8b5 /README
parentfcd867d01bfec7c6c1a2bdc4639f1a6b924e4fff (diff)
downloadjerasure-81f4bdd6f5ded33d18ef55c01f9c4edb196e41bf.tar.gz
run tests with make check
* Update the README accordingly * Add the VALGRIND variable to run thru valgrind where possible * Add the make check files administrative files to .gitignore Signed-off-by: Loic Dachary <loic@dachary.org>
Diffstat (limited to 'README')
-rw-r--r--README12
1 files changed, 8 insertions, 4 deletions
diff --git a/README b/README
index f48b3dc..cf1d3a6 100644
--- a/README
+++ b/README
@@ -77,10 +77,14 @@ Testing GF-Complete
If the GF-Complete tools are installed in /usr/local/bin
-cd Examples
-./test_all_gfs.sh
+ make check
If the GF-Complete tools are installed elsewhere
-cd Examples
-GF_COMPLETE_DIR=../../gf-complete/tools ./test_all_gfs.sh
+ make GF_COMPLETE_DIR=$(pwd)/../gf-complete/tools check
+
+To run some tests with valgrind
+
+ make VALGRIND='valgrind --tool=memcheck --quiet' \
+ GF_COMPLETE_DIR=$(pwd)/../gf-complete/tools \
+ check