summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-10-31 11:01:36 -0400
committerNick Mathewson <nickm@torproject.org>2018-10-31 11:01:36 -0400
commit0a824bd88998be66bfd8d55c7200fe3903e19739 (patch)
treef8cc509de4b15e11ed699053f01cb57ebc1f0084 /src/test
parent0878bb961f9028a81ce465702afb891a82015228 (diff)
parent939657771c7d2832fcedf51c0b250841d907e07f (diff)
downloadtor-0a824bd88998be66bfd8d55c7200fe3903e19739.tar.gz
tor-0a824bd88998be66bfd8d55c7200fe3903e19739.zip
Merge remote-tracking branch 'tor-github/pr/436' into maint-0.2.9
Diffstat (limited to 'src/test')
-rwxr-xr-xsrc/test/bt_test.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/test/bt_test.py b/src/test/bt_test.py
index 30591453b9..a1efca00fb 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)