summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-03-03 20:45:01 (GMT)
committerGitHub <noreply@github.com>2022-03-03 20:45:01 (GMT)
commit4173d677a1d7c72bb32d292fbff1b4cf073d615c (patch)
tree09f1e461fadd304b59ece2382f6f0659d8253017 /Misc
parent127797f572cc7374192e415c44ea2e95b009d5ab (diff)
downloadcpython-4173d677a1d7c72bb32d292fbff1b4cf073d615c.zip
cpython-4173d677a1d7c72bb32d292fbff1b4cf073d615c.tar.gz
cpython-4173d677a1d7c72bb32d292fbff1b4cf073d615c.tar.bz2
bpo-46913: Fix test_faulthandler.test_sigfpe() on UBSAN (GH-31662)
Disable undefined behavior sanitizer (UBSAN) on faulthandler_sigfpe().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2022-03-03-17-36-24.bpo-46913.vxETIE.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2022-03-03-17-36-24.bpo-46913.vxETIE.rst b/Misc/NEWS.d/next/Tests/2022-03-03-17-36-24.bpo-46913.vxETIE.rst
new file mode 100644
index 0000000..65fed1c
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2022-03-03-17-36-24.bpo-46913.vxETIE.rst
@@ -0,0 +1,3 @@
+Fix test_faulthandler.test_sigfpe() if Python is built with undefined
+behavior sanitizer (UBSAN): disable UBSAN on the faulthandler_sigfpe()
+function. Patch by Victor Stinner.