aboutsummaryrefslogtreecommitdiff
path: root/src/test/bt_test.py
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-10-31 11:01:41 -0400
committerNick Mathewson <nickm@torproject.org>2018-10-31 11:01:41 -0400
commit59043665f8b69b2caa8978269426d544b484fc98 (patch)
treeba77fc98394416fa601bf3e6aedd91f23ca27cfc /src/test/bt_test.py
parent3a05b5acdc4a40eae6016ab94067bf5dde92e5fe (diff)
parent158db532eb6423a87434599ff0a0c5fb46208e69 (diff)
downloadtor-59043665f8b69b2caa8978269426d544b484fc98.tar.gz
tor-59043665f8b69b2caa8978269426d544b484fc98.zip
Merge branch 'maint-0.3.4' into maint-0.3.5
Diffstat (limited to 'src/test/bt_test.py')
-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 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)