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

set -eu

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

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

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

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

subplot codegen bumper.md -o test.py
rm -f test.log
if $hideok python3 test.py --log test.log "$@"
then
    echo "test program OK"
else
    echo "test program FAILED, log file follows"
    echo ==================================================================
    cat test.log
    echo ==================================================================
    exit 42
fi

echo "Everything seems to be in order."