blob: d4614749e7318bf80ef5cf49d2faa070f436a37c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
set -x
set -e
cd "$(dirname "${BASH_SOURCE[0]}")"
"$COQLIB"/tools/make-one-time-file.py time-of-build.log.in time-of-build-pretty-user.log
diff -u time-of-build-pretty-user.log.expected time-of-build-pretty-user.log || exit $?
"$COQLIB"/tools/make-one-time-file.py time-of-build.log.in time-of-build-pretty-real.log
diff -u time-of-build-pretty-real.log.expected time-of-build-pretty-real.log || exit $?
|