Add cli-tests to `make test`. This adds a `python3` dependency to `make test`, but not `make check`. We could make this dependency optional by skipping the tests if `python3` is not present.
14 lines
309 B
Bash
14 lines
309 B
Bash
. "$COMMON/platform.sh"
|
|
|
|
MTIME="stat -c %Y"
|
|
case "$UNAME" in
|
|
Darwin | FreeBSD | OpenBSD | NetBSD) MTIME="stat -f %m" ;;
|
|
esac
|
|
|
|
assertSameMTime() {
|
|
MT1=$($MTIME "$1")
|
|
MT2=$($MTIME "$2")
|
|
echo MTIME $MT1 $MT2
|
|
[ "$MT1" = "$MT2" ] || die "mtime on $1 doesn't match mtime on $2 ($MT1 != $MT2)"
|
|
}
|