Skip to content
Snippets Groups Projects
Unverified Commit 93dcfc65 authored by rl1987's avatar rl1987 Committed by teor
Browse files

Use empty torrc file when launching tor in test_rebind.py

parent 3b9e3cca
Branches
Tags
No related merge requests found
......@@ -82,13 +82,17 @@ if not os.path.exists(sys.argv[2]):
tor_path = sys.argv[1]
data_dir = sys.argv[2]
empty_torrc_path = os.path.join(data_dir, 'empty_torrc')
open(empty_torrc_path, 'w').close()
tor_process = subprocess.Popen([tor_path,
'-DataDirectory', data_dir,
'-ControlPort', '127.0.0.1:{}'.format(control_port),
'-SOCKSPort', '127.0.0.1:{}'.format(socks_port),
'-Log', 'debug stdout',
'-LogTimeGranularity', '1',
'-FetchServerDescriptors', '0'],
'-FetchServerDescriptors', '0',
'-f', empty_torrc_path],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment