From: Andre Noll Date: Sun, 16 Jul 2017 12:06:58 +0000 (+0200) Subject: autogen: Run make check after a successful build. X-Git-Tag: v0.6.1~43 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=93707439c56276690e06160788dd6af7c72e3d68 autogen: Run make check after a successful build. This helps to run the test suite more often, so bugs get caught earlier. --- diff --git a/NEWS.md b/NEWS.md index 5e034215..931ddbb8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -6,6 +6,7 @@ current master branch - New sort order for the ls command: -s=h sorts the ls output by hash value of the audio file. +- autogen.sh now runs the test suite after a successful build. - The contents of overview.pdf have been integrated into the user manual. - The doxygen source browser has been disabled temporarily. The diff --git a/autogen.sh b/autogen.sh index 708602e7..caf1401d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -25,4 +25,4 @@ echo configuring... ./configure $@ > /dev/null echo compiling... make clean > /dev/null 2>&1 -make -j $n > /dev/null +make -j $n > /dev/null && make check