diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2023-09-15 21:37:46 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2023-09-15 21:57:38 +0100 |
commit | 038c0afa893f8cb2277ff44be3e2c09cfab4bc0c (patch) | |
tree | 4935c9338e63d878534d52d59a772ba563a291ad /libstdc++-v3 | |
parent | d7b6020276a843e97f6135259b4ab3b53a5850e2 (diff) | |
download | gcc-038c0afa893f8cb2277ff44be3e2c09cfab4bc0c.zip gcc-038c0afa893f8cb2277ff44be3e2c09cfab4bc0c.tar.gz gcc-038c0afa893f8cb2277ff44be3e2c09cfab4bc0c.tar.bz2 |
libstdc++: Fix 29_atomics/headers/atomic/types_std_c++2a_neg.cc for C++23
This test fails when run as C++23 because the <bits/stdc++.h> PCH
includes <stdatomic.h> which declares ::memory_order, invalidating the
test's assumptions. Disable PCH so that the test verifies that <atomic>
doesn't declare ::memory_order, as originally intended.
Also fix the using-declaration which would be invalid even if the type
was declared in the global namespace, and adjust the expected error.
libstdc++-v3/ChangeLog:
* testsuite/29_atomics/headers/atomic/types_std_c++2a_neg.cc:
Fix test to work for C++23 and C++26 too.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/testsuite/29_atomics/headers/atomic/types_std_c++2a_neg.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/29_atomics/headers/atomic/types_std_c++2a_neg.cc b/libstdc++-v3/testsuite/29_atomics/headers/atomic/types_std_c++2a_neg.cc index 8eba8bf..65199ce 100644 --- a/libstdc++-v3/testsuite/29_atomics/headers/atomic/types_std_c++2a_neg.cc +++ b/libstdc++-v3/testsuite/29_atomics/headers/atomic/types_std_c++2a_neg.cc @@ -1,5 +1,8 @@ // { dg-options "-std=gnu++2a" } -// { dg-do compile { target c++2a } } +// { dg-do compile { target c++20 } } +// Disable PCH because <bits/stdc++.h> includes <stdatomic.h> which declares +// memory_order in the global namespace. +// { dg-add-options no_pch } // Copyright (C) 2019-2023 Free Software Foundation, Inc. // @@ -23,7 +26,7 @@ void test01() { // Not global scoped, only namespace std. - using memory_order; // { dg-error "expected nested-name-specifier" } + using ::memory_order; // { dg-error "has not been declared" } constexpr auto relaxed = memory_order::relaxed; // { dg-error "has not been declared" } constexpr auto consume = memory_order::consume; // { dg-error "has not been declared" } constexpr auto acquire = memory_order::acquire; // { dg-error "has not been declared" } |