diff options
| author | Enrico Tassi | 2017-07-17 10:50:04 +0200 |
|---|---|---|
| committer | Enrico Tassi | 2017-07-20 15:40:48 +0200 |
| commit | 7f7075d10780fe24c97e329868a501c2af422625 (patch) | |
| tree | 59666791550e3114c9b8b40cfdf909c71175197b /test-suite/coq-makefile/coqdoc1 | |
| parent | da2d3108f126b3ff7bface118319bfa43829a895 (diff) | |
coq-makefile: make test suite detect more errors
Replacing ; with && and enabling bash's pipefail option
Diffstat (limited to 'test-suite/coq-makefile/coqdoc1')
| -rwxr-xr-x | test-suite/coq-makefile/coqdoc1/run.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test-suite/coq-makefile/coqdoc1/run.sh b/test-suite/coq-makefile/coqdoc1/run.sh index e8291c89da..78e30bd354 100755 --- a/test-suite/coq-makefile/coqdoc1/run.sh +++ b/test-suite/coq-makefile/coqdoc1/run.sh @@ -1,8 +1,5 @@ #!/usr/bin/env bash -#set -x -set -e - . ../template/init.sh coq_makefile -f _CoqProject -o Makefile @@ -11,7 +8,7 @@ make html mlihtml make install DSTROOT="$PWD/tmp" make install-doc DSTROOT="$PWD/tmp" #make debug -(for d in `find tmp -name user-contrib`; do pushd $d >/dev/null; find .; popd >/dev/null; done) | sort -u > actual +(for d in `find tmp -name user-contrib` ; do pushd $d >/dev/null && find . && popd >/dev/null; done) | sort -u > actual sort -u > desired <<EOT . ./test |
