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/include.am | |
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/include.am')
-rw-r--r-- | src/test/include.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/include.am b/src/test/include.am index 5fd61dd3e6..c0aca8afe2 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -7,7 +7,8 @@ TESTS_ENVIRONMENT = \ export abs_top_srcdir="$(abs_top_srcdir)"; \ export builddir="$(builddir)"; \ export TESTING_TOR_BINARY="$(TESTING_TOR_BINARY)"; \ - export CARGO="$(CARGO)"; + export CARGO="$(CARGO)"; \ + export CARGO_ONLINE="$(CARGO_ONLINE)"; TESTSCRIPTS = \ src/test/fuzz_static_testcases.sh \ |