diff options
author | overcaffeinated <overcaffeinated@airmail.cc> | 2016-11-20 18:09:16 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-11-21 12:15:44 -0500 |
commit | 6dc25e79b98ed5cb9f29de174878333a1175f755 (patch) | |
tree | 9887fdcffff8f62c9ff930b15179df445aaee009 /doc/HACKING/WritingTests.md | |
parent | ded58777c5332a343a4f427058c56a2e28f440ab (diff) | |
download | tor-6dc25e79b98ed5cb9f29de174878333a1175f755.tar.gz tor-6dc25e79b98ed5cb9f29de174878333a1175f755.zip |
Fix typo
Remove stray 'To run'
Diffstat (limited to 'doc/HACKING/WritingTests.md')
-rw-r--r-- | doc/HACKING/WritingTests.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/HACKING/WritingTests.md b/doc/HACKING/WritingTests.md index de80bbdef2..4dae41e922 100644 --- a/doc/HACKING/WritingTests.md +++ b/doc/HACKING/WritingTests.md @@ -48,7 +48,7 @@ isolation, you just run `./src/test/test-memwipe`. To run tests within the unit test programs, you can specify the name of the test. The string ".." can be used as a wildcard at the end of the test name. For example, to run all the cell format tests, enter -`./src/test/test cellfmt/..`. To run +`./src/test/test cellfmt/..`. Many tests that need to mess with global state run in forked subprocesses in order to keep from contaminating one another. But when debugging a failing test, |