summaryrefslogtreecommitdiff
path: root/check
blob: 2da9a65eca1dca24d7d66c76d878577ab9a3de49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/sh
#
# Run the automated tests for the project.

set -eu

hideok=chronic
if ! command -v chronic >/dev/null; then
	hideok=
fi

if [ "$#" -gt 0 ]; then
	case "$1" in
	verbose | -v | --verbose)
		hideok=
		shift
		;;
	esac
fi

require_cmd() {
	if ! command -v "$1" >/dev/null; then
		echo "Need to have $1 installed, but can't find it" 1>&2
		return 1
	fi
}

got_cargo_cmd() {
	cargo "$1" --help >/dev/null
}

require_cmd rustc
require_cmd cc
require_cmd cargo
require_cmd python3
require_cmd subplot
require_cmd summain
require_cmd pkg-config
require_cmd pandoc
require_cmd pdflatex

# daemonize installation location changed from Debian 10 to 11.
require_cmd daemonize || require_cmd /usr/sbin/daemonize

got_cargo_cmd clippy && cargo clippy --all-targets -q
$hideok cargo build --all-targets
got_cargo_cmd fmt && $hideok cargo fmt -- --check
$hideok cargo test

subplot docgen obnam.md -o obnam.html
subplot docgen obnam.md -o obnam.pdf

target="$(cargo metadata --format-version=1 | python3 -c 'import sys, json; o = json.load(sys.stdin); print(o["target_directory"])')"
subplot codegen obnam.md -o test.py
rm -f test.log
if [ "$(id -un)" = root ]; then
	echo Not running tests as root.
else
	$hideok python3 test.py --log test.log --env "CARGO_TARGET_DIR=$target" "$@"
fi

echo "Everything seems to be in order."