diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-10-31 11:01:41 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-10-31 11:01:41 -0400 |
commit | 158db532eb6423a87434599ff0a0c5fb46208e69 (patch) | |
tree | 9098e1ccdd33bc5b08dd96deb225d0f331b99d68 /src | |
parent | cf2cb783b77bf9a84c6485b492ebb7e09914b74f (diff) | |
parent | bcc1a7180870368b69d51706226c2f667c482506 (diff) | |
download | tor-158db532eb6423a87434599ff0a0c5fb46208e69.tar.gz tor-158db532eb6423a87434599ff0a0c5fb46208e69.zip |
Merge branch 'maint-0.3.3' into maint-0.3.4
Diffstat (limited to 'src')
-rwxr-xr-x | src/test/bt_test.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/test/bt_test.py b/src/test/bt_test.py index 4cb3326042..20d5c93346 100755 --- a/src/test/bt_test.py +++ b/src/test/bt_test.py @@ -44,10 +44,12 @@ print("BAD") for l in LINES: print("{}".format(l), end="") -if sys.platform.startswith('freebsd'): - # See bug #17808 if you know how to fix this. - print("Test failed; but FreeBSD is known to have backtrace problems.\n" - "Treating as 'SKIP'.") +if (sys.platform.startswith('freebsd') or sys.platform.startswith('netbsd') or + sys.platform.startswith('openbsd') or sys.platform.startswith('darwin')): + # See bug #17808 if you know how to fix backtraces on BSD-derived systems + print("Test failed; but {} is known to have backtrace problems." + .format(sys.platform)) + print("Treating as 'SKIP'.") sys.exit(77) sys.exit(1) |