blob: a5c48b332455c5a7c7c8e6dd73daac43f129c86d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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.log 2>time-of-build.err.log || exit $?
diff -u time-of-build.log.expected time-of-build.log || exit $?
diff -u time-of-build.err.log.expected time-of-build.err.log || exit $?
|