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 | 2a4506776e4eea824ac2cb39b6825d3b57bd852b (patch) | |
tree | 8af0d0545522da0b3257245c94d3e1a43bf3c05a /src | |
parent | 672e26cad837e368dfe39d53546b85afd69ad75c (diff) | |
parent | 59043665f8b69b2caa8978269426d544b484fc98 (diff) | |
download | tor-2a4506776e4eea824ac2cb39b6825d3b57bd852b.tar.gz tor-2a4506776e4eea824ac2cb39b6825d3b57bd852b.zip |
Merge branch 'maint-0.3.5'
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 0eeb58c16c..f8894aac0b 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) |