]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
rust: Remove --all-features flag from `cargo test` call in test_rust.sh.
authorIsis Lovecruft <isis@torproject.org>
Mon, 18 Jun 2018 18:37:07 +0000 (18:37 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 20 Jun 2018 20:37:33 +0000 (16:37 -0400)
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

index 95ffc2e65976cfd3d2b7ebeea2f4c36d5d08d9e3..4795258d0698558864f9ab20a3908791c388194c 100755 (executable)
@@ -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