aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2023-06-23 09:38:36 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2023-06-23 09:38:36 +0200
commitab4705a5992a808b4567fc4c26147184ed4dd73c (patch)
treebd4c9513e029037a4281cecc54c9155b03112b80 /tests
parenteb3f9c312d1c50e9b2f9ef9a049e01075f1d7c4d (diff)
Release version 1.11.0-b.9+1v1.11.0-b.9+1
Disable dodgy part of shared_ptr test that now causes segfault with Clang 16 on Mac OS and Windows.
Diffstat (limited to 'tests')
-rw-r--r--tests/shared-ptr/driver.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/shared-ptr/driver.cxx b/tests/shared-ptr/driver.cxx
index 42d4a55..d0c7f8b 100644
--- a/tests/shared-ptr/driver.cxx
+++ b/tests/shared-ptr/driver.cxx
@@ -99,7 +99,11 @@ main ()
// Error handling. This can theoretically can segfault and it trips up
// the address sanitizer.
//
-#ifndef __SANITIZE_ADDRESS__
+ // @@ This now also trips Clang 16 on various platforms, so disable for
+ // now.
+ //
+#if 0
+//#ifndef __SANITIZE_ADDRESS__
{
type* x (new type (5, "foo"));