diff options
author | teor <teor@torproject.org> | 2018-08-10 13:11:27 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-10 16:37:19 +1000 |
commit | 546c134801a17ebb63032b5ac52a65279998ea6f (patch) | |
tree | 0fee5626d21807eb2300a2af6bcb15490a5a2cbe /src | |
parent | f5aa667d48d88f917371219ddefce26637c2b1ad (diff) | |
download | tor-546c134801a17ebb63032b5ac52a65279998ea6f.tar.gz tor-546c134801a17ebb63032b5ac52a65279998ea6f.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')
-rwxr-xr-x | src/test/test_rust.sh | 2 |
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 |