You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.0 KiB
49 lines
1.0 KiB
#!/bin/bash
|
|
|
|
# This is the top-level test script:
|
|
#
|
|
# - Build documentation for Rust code in 'src/tools/target/doc'.
|
|
# - Run unit tests for all Rust crates.
|
|
# - Make a debug build of all crates.
|
|
# - Make a release build of cton-util.
|
|
# - Run file-level tests with the release build of cton-util.
|
|
#
|
|
# All tests run by this script should be passing at all times.
|
|
|
|
# Exit immediately on errors.
|
|
set -e
|
|
|
|
# Repository top-level directory.
|
|
cd $(dirname "$0")
|
|
topdir=$(pwd)
|
|
|
|
function banner() {
|
|
echo "====== $@ ======"
|
|
}
|
|
|
|
PKGS="cretonne cretonne-reader cretonne-tools"
|
|
cd "$topdir/src/tools"
|
|
for PKG in $PKGS
|
|
do
|
|
banner "Rust $PKG unit tests"
|
|
cargo test -p $PKG
|
|
done
|
|
|
|
# Build cton-util for parser testing.
|
|
cd "$topdir/src/tools"
|
|
banner "Rust documentation"
|
|
echo "open $topdir/src/tools/target/doc/cretonne/index.html"
|
|
cargo doc
|
|
banner "Rust release build"
|
|
cargo build --release
|
|
|
|
export CTONUTIL="$topdir/src/tools/target/release/cton-util"
|
|
|
|
# Run the parser tests.
|
|
cd "$topdir/tests"
|
|
banner "Parser tests"
|
|
parser/run.sh
|
|
banner "CFG tests"
|
|
cfg/run.sh
|
|
|
|
banner "OK"
|
|
|