diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2017-05-02 05:06:45 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-05-19 08:47:11 -0400 |
commit | d6f9a4f11acdfc8efea19a1644f355cdb90bfbb5 (patch) | |
tree | 0436dd60dc6d139535aae46b22a948402fd5faf4 /src/test/test_rust.sh | |
parent | ed15511ac3ace940956c6c72a61387d37f035160 (diff) | |
download | tor-d6f9a4f11acdfc8efea19a1644f355cdb90bfbb5.tar.gz tor-d6f9a4f11acdfc8efea19a1644f355cdb90bfbb5.zip |
cargo-online-mode configure argument
Passing --enable-cargo-online-mode during configure allows cargo to make
network requests while building Tor or running tests. If this flag is
not supplied, the dependencies need to be available in the form of a
local mirror.
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 b41be978b9..7c71008e02 100755 --- a/src/test/test_rust.sh +++ b/src/test/test_rust.sh @@ -7,7 +7,7 @@ exitcode=0 for crate in $crates; do cd "${abs_top_srcdir:-.}/src/rust/${crate}" - "${CARGO:-cargo}" test --frozen || exitcode=1 + "${CARGO:-cargo}" test ${CARGO_ONLINE-"--frozen"} || exitcode=1 done exit $exitcode |