mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
a8ac21fbb5
This is really annoying, since we can't use cfg(test) for doctests.
20 lines
586 B
Bash
Executable File
20 lines
586 B
Bash
Executable File
#!/bin/sh
|
|
# Test all Rust crates
|
|
|
|
set -e
|
|
|
|
export LSAN_OPTIONS=suppressions=${abs_top_srcdir:-../../..}/src/test/rust_supp.txt
|
|
|
|
for cargo_toml_dir in "${abs_top_srcdir:-../../..}"/src/rust/*; do
|
|
if [ -e "${cargo_toml_dir}/Cargo.toml" ]; then
|
|
cd "${abs_top_builddir:-../../..}/src/rust" && \
|
|
CARGO_TARGET_DIR="${abs_top_builddir:-../../..}/src/rust/target" \
|
|
"${CARGO:-cargo}" test ${CARGO_ONLINE-"--frozen"} \
|
|
--features "test_linking_hack" \
|
|
${EXTRA_CARGO_OPTIONS} \
|
|
--manifest-path "${cargo_toml_dir}/Cargo.toml" || exitcode=1
|
|
fi
|
|
done
|
|
|
|
exit $exitcode
|