aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_rust.sh
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2018-08-10 13:11:27 +1000
committerteor <teor@torproject.org>2018-08-10 13:11:27 +1000
commite1291aa84a04b8006130ce08338ee07a662e5ce0 (patch)
tree66467c025500fa32b275469e87300a8039fd1428 /src/test/test_rust.sh
parenta5715a46c4d4b96c68ea4b30ad98c685ffadf7c2 (diff)
downloadtor-e1291aa84a04b8006130ce08338ee07a662e5ce0.tar.gz
tor-e1291aa84a04b8006130ce08338ee07a662e5ce0.zip
Rust: Use --all-features in test_rust.sh for 0.3.3 and 0.3.4
Re-applies 0.3.3 changes after 24629.
Diffstat (limited to 'src/test/test_rust.sh')
-rwxr-xr-xsrc/test/test_rust.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_rust.sh b/src/test/test_rust.sh
index 4afc84285f..5405af436b 100755
--- a/src/test/test_rust.sh
+++ b/src/test/test_rust.sh
@@ -9,7 +9,7 @@ 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"} \
+ "${CARGO:-cargo}" test --all-features ${CARGO_ONLINE-"--frozen"} \
${EXTRA_CARGO_OPTIONS} \
--manifest-path "${cargo_toml_dir}/Cargo.toml" || exitcode=1
fi