summaryrefslogtreecommitdiff
path: root/tools/proof
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-03-07 22:34:19 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-03-07 22:34:19 -0400
commit3cc2520a3295e6f28f29575754bad2154532accc (patch)
treec015064b6e63c9789eaf36f8eb133346913a6c76 /tools/proof
parentdd128685004e359426d7efda763978286745a4f9 (diff)
downloadfork-ledger-3cc2520a3295e6f28f29575754bad2154532accc.tar.gz
fork-ledger-3cc2520a3295e6f28f29575754bad2154532accc.tar.bz2
fork-ledger-3cc2520a3295e6f28f29575754bad2154532accc.zip
Don't run 'make fullcheck' for the gcov build
Diffstat (limited to 'tools/proof')
-rwxr-xr-xtools/proof16
1 files changed, 12 insertions, 4 deletions
diff --git a/tools/proof b/tools/proof
index aec67146..c0798575 100755
--- a/tools/proof
+++ b/tools/proof
@@ -36,10 +36,18 @@ function build_and_test() {
exit 1
fi
- echo %%% Testing $NAME %%%
- if ! (cd $DIR && make fullcheck); then
- echo %%% FAILED to test $NAME %%%
- exit 1
+ if [ "$NAME" = "gcov" ]; then
+ echo %%% Testing $NAME %%%
+ if ! (cd $DIR && make check); then
+ echo %%% FAILED to test $NAME %%%
+ exit 1
+ fi
+ else
+ echo %%% Testing $NAME %%%
+ if ! (cd $DIR && make fullcheck); then
+ echo %%% FAILED to test $NAME %%%
+ exit 1
+ fi
fi
}