diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2019-06-23 13:31:47 +0300 |
---|---|---|
committer | rl1987 <rl1987@sdf.lonestar.org> | 2019-06-23 13:31:47 +0300 |
commit | f9de9052e1e63401bb0d824eeb3cf0677b6dfd7d (patch) | |
tree | 16883a95b774b4bfff798ea95c5a444a8114bccc /.travis.yml | |
parent | 70415c9f729847a56e7feefe75e77b2cb96d4667 (diff) | |
download | tor-f9de9052e1e63401bb0d824eeb3cf0677b6dfd7d.tar.gz tor-f9de9052e1e63401bb0d824eeb3cf0677b6dfd7d.zip |
On Travis, put random data in ~/.torrc
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5d5d95f6b3..1901d950a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -191,6 +191,9 @@ install: - python --version ## run stem tests if they are enabled. - if [[ "$TEST_STEM" != "" ]]; then pushd stem; python -c "from stem import stem; print(stem.__version__);"; git log -1; popd; fi + ## We don't want Tor tests to depends on default configuration file at + ## ~/.torrc. So we put some random bytes in there, to make sure it doesn't. + - dd ibs=1 count=1024 if=/dev/urandom > ~/.torrc script: # Skip test_rebind on macOS |