diff options
author | Gregory P. Smith <greg@krypto.org> | 2018-12-31 01:05:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-31 01:05:36 (GMT) |
commit | b474e6774d60fa67d5373e361a0ed53c18b24f53 (patch) | |
tree | a9c0edd450e759793af792d039f6396af3cfaf51 /Misc | |
parent | 387512c7ecde6446f2e29408af2e16b9fc043807 (diff) | |
download | cpython-b474e6774d60fa67d5373e361a0ed53c18b24f53.zip cpython-b474e6774d60fa67d5373e361a0ed53c18b24f53.tar.gz cpython-b474e6774d60fa67d5373e361a0ed53c18b24f53.tar.bz2 |
bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375)
Add Clang Memory Sanitizer build instrumentation to work around
false positives from the socket and time modules as well as skipping
a couple test_faulthandler tests.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-12-30-15-36-23.bpo-35214.GWDQcv.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-12-30-15-36-23.bpo-35214.GWDQcv.rst b/Misc/NEWS.d/next/Core and Builtins/2018-12-30-15-36-23.bpo-35214.GWDQcv.rst new file mode 100644 index 0000000..d2e5457 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-12-30-15-36-23.bpo-35214.GWDQcv.rst @@ -0,0 +1,2 @@ +clang Memory Sanitizer build instrumentation was added to work around false +positives from socket, time, and test_faulthandler. |