summaryrefslogtreecommitdiff
path: root/check
blob: 0dc71ccd544ff3ed7683d9f3fca279378d8c90f0 (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
#!/bin/sh
#
# Run the automated tests for the project.

set -eu

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

cargo build --all-targets $quiet
cargo clippy $quiet
cargo fmt -- --check
$hideok cargo test $quiet

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

sp-codegen obnam.md -o test.py
rm -f test.log
$hideok python3 test.py --log test.log "$@"

echo "Everything seems to be in order."