aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_cmdline_args.py
AgeCommit message (Collapse)Author
2015-02-08Dropping test_cmdline_args.pyDamian Johnson
Before a couple weeks ago didn't know Tor had these tests, interesting! Stem already has tests for spawning tor processes but lacked any with this targeted focus on its arguments. I've added our own counterpart for these tests. Many are direct copies but there were others I improved a little... https://trac.torproject.org/projects/tor/ticket/14109 https://gitweb.torproject.org/stem.git/commit/?id=137d193a026638f066e817e3396cebbbb6ace012 Now that Tor uses Stem to supplement its tests no reason for these to live separately. Tested by simply building tor and confirming test_cmdline_args.py is no longer in the generated Makefile.
2015-02-02Test for 13865.rl1987
2015-01-06Make test_cmdline_args.py work on WindowsNick Mathewson
Patch from Gisle Vanem on tor-dev ml
2014-04-27Make the python test scripts work on python3Nick Mathewson
The python scripts invoked by 'make check' didn't work on python3 before. That was a problem on systems where 'python' is python3. Fixes bug 11608; bugfix on 0.2.5.2-alpha.
2013-11-11Fix test_cmdline_args to work with old opensslNick Mathewson
If openssl was old, Tor would add a warning about its version in between saying "no torrc found, using reasonable defaults" and "configuration was valid".
2013-11-07Documentation and tests for 10060Nick Mathewson
2013-10-21Make test_cmdline_args.py work with older pythonsNick Mathewson
I was using the assertIn() function on unit tests, which Python 2.7 introduced. But we'd like to be able to run our unit tests on Pythons from older operating systems.
2013-10-11When possible, run the ntor python integration tests tooNick Mathewson
2013-09-13Finish tests for command-line argumentsNick Mathewson
2013-09-13Integration test for parsing arguments on the commandlineNick Mathewson
(incomplete)