[tor-commits] [tor/release-0.3.4] rust: Remove --all-features flag from `cargo test` call in test_rust.sh.

nickm at torproject.org nickm at torproject.org
Wed Jun 20 20:37:43 UTC 2018


commit 7589fd6d403ac2aecb991a07069d78c6dccae719
Author: Isis Lovecruft <isis at torproject.org>
Date:   Mon Jun 18 18:37:07 2018 +0000

    rust: Remove --all-features flag from `cargo test` call in test_rust.sh.
    
    We'd like to feature gate code that calls C from Rust, as a workaround
    to several linker issues when running `cargo test` (#25386), and we
    can't feature gate anything out of test code if `cargo test` is called
    with `--all-features`.
    
     * FIXES #26400: https://bugs.torproject.org/26400
---
 src/test/test_rust.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/test_rust.sh b/src/test/test_rust.sh
index 95ffc2e65..4795258d0 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
 	cd "${cargo_toml_dir}" && \
 	    CARGO_TARGET_DIR="${abs_top_builddir:-../../..}/src/rust/target" \
 	    CARGO_HOME="${abs_top_builddir:-../../..}/src/rust" \
-	    "${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



More information about the tor-commits mailing list