tor/src/test/test_rust.sh

19 lines
527 B
Bash
Raw Normal View History

2017-04-29 13:17:22 +02:00
#!/bin/sh
# Test all Rust crates
2017-04-29 13:17:22 +02:00
set -e
2017-04-29 13:17:22 +02:00
export LSAN_OPTIONS=suppressions=${abs_top_srcdir:-../../..}/src/test/rust_supp.txt
2017-04-29 13:17:22 +02:00
for cargo_toml_dir in "${abs_top_srcdir:-../../..}"/src/rust/*; do
if [ -e "${cargo_toml_dir}/Cargo.toml" ]; then
cd "${cargo_toml_dir}" && \
CARGO_TARGET_DIR="${abs_top_builddir:-../../..}/src/rust/target" \
"${CARGO:-cargo}" test ${CARGO_ONLINE-"--frozen"} \
${EXTRA_CARGO_OPTIONS} \
--manifest-path "${cargo_toml_dir}/Cargo.toml" || exitcode=1
fi
2017-04-29 13:17:22 +02:00
done
exit $exitcode