summaryrefslogtreecommitdiff
path: root/src/test/test_rust.sh
blob: c35c57456f138e079715b5d83c11985daeb3571a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# Test all Rust crates

set -e

CARGO_TARGET_DIR="${abs_top_builddir:-../../..}/src/rust/target" \
    CARGO_HOME="${abs_top_builddir:-../../..}/src/rust" \
    find "${abs_top_srcdir:-../../..}/src/rust" \
    -mindepth 2 -maxdepth 2 \
    -type f -name 'Cargo.toml' \
    -exec "${CARGO:-cargo}" test --all-features ${CARGO_ONLINE-"--frozen"} \
    --manifest-path '{}' \;

exit $?