mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
d110f9c9a6
This appears to be an internal rust thing: I don't know why it's leaking. We should investigate further.
20 lines
576 B
Bash
Executable File
20 lines
576 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 "${cargo_toml_dir}" && \
|
|
CARGO_TARGET_DIR="${abs_top_builddir:-../../..}/src/rust/target" \
|
|
CARGO_HOME="${abs_top_builddir:-../../..}/src/rust" \
|
|
"${CARGO:-cargo}" test ${CARGO_ONLINE-"--frozen"} \
|
|
${EXTRA_CARGO_OPTIONS} \
|
|
--manifest-path "${cargo_toml_dir}/Cargo.toml" || exitcode=1
|
|
fi
|
|
done
|
|
|
|
exit $exitcode
|