summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-04 13:40:25 -0800
committerNed Deily <nad@python.org>2018-11-04 16:40:25 -0500
commitf574ce79729ecb01f1f5b3e1a34c8aa7480b79e8 (patch)
treef09c4acdfe08000f6b8c0cb5111dde71414c4abb /Misc/NEWS.d/next/Tests
parentFix a typo about a comma. (GH-10306) (diff)
downloadcpython-f574ce79729ecb01f1f5b3e1a34c8aa7480b79e8.tar.gz
cpython-f574ce79729ecb01f1f5b3e1a34c8aa7480b79e8.tar.bz2
cpython-f574ce79729ecb01f1f5b3e1a34c8aa7480b79e8.zip
bpo-21263: Skip test_gdb when python has been compiled with LLVM clang (GH-10318) (GH-10326)
(cherry picked from commit 59668aa8b7f174b59304eab833c1c1181886c3c6) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next/Tests')
-rw-r--r--Misc/NEWS.d/next/Tests/2018-11-04-20-17-09.bpo-21263.T3qo9r.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2018-11-04-20-17-09.bpo-21263.T3qo9r.rst b/Misc/NEWS.d/next/Tests/2018-11-04-20-17-09.bpo-21263.T3qo9r.rst
new file mode 100644
index 00000000000..9c6b4ef9070
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2018-11-04-20-17-09.bpo-21263.T3qo9r.rst
@@ -0,0 +1,4 @@
+After several reports that test_gdb does not work properly on macOS and
+since gdb is not shipped by default anymore, test_gdb is now skipped on
+macOS when LLVM Clang has been used to compile Python. Patch by
+Lysandros Nikolaou