diff options
author | teor <teor@torproject.org> | 2018-08-10 13:30:16 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-10 13:30:16 +1000 |
commit | 19038ff4bbcc50e0d9fa3d38c20689ea0da1b9c2 (patch) | |
tree | a51b2e82923d1b31e1479adc3d47d85fe6bc4914 /src/test/test_rust.sh | |
parent | ace98493bd8cc9b1227648bba29cb9686ecc4056 (diff) | |
download | tor-19038ff4bbcc50e0d9fa3d38c20689ea0da1b9c2.tar.gz tor-19038ff4bbcc50e0d9fa3d38c20689ea0da1b9c2.zip |
Revert "Rust: Use --all-features in test_rust.sh for 0.3.3 and 0.3.4"
This reverts commit e1291aa84a04b8006130ce08338ee07a662e5ce0.
Diffstat (limited to 'src/test/test_rust.sh')
-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 5405af436b..4afc84285f 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 --all-features ${CARGO_ONLINE-"--frozen"} \ + "${CARGO:-cargo}" test ${CARGO_ONLINE-"--frozen"} \ ${EXTRA_CARGO_OPTIONS} \ --manifest-path "${cargo_toml_dir}/Cargo.toml" || exitcode=1 fi |