diff options
author | Nikolas Klauser <nikolasklauser@berlin.de> | 2025-08-26 16:26:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-26 16:26:18 +0200 |
commit | 4b305635fc80d008265d8f054887269534a85e4d (patch) | |
tree | bf5d17c5428d5ccf1a309ab0a95fc705a5b2b8c9 | |
parent | 749537f4878165f5548b499669ec11a61da1903c (diff) | |
download | llvm-4b305635fc80d008265d8f054887269534a85e4d.zip llvm-4b305635fc80d008265d8f054887269534a85e4d.tar.gz llvm-4b305635fc80d008265d8f054887269534a85e4d.tar.bz2 |
[libc++][C++03] Fix test/libcxx-03/system_reserved_names.gen.py (#155385)
This test only fails because it includes `<__config>`. Switch to using
`<__cxx03/__config>` instead to fix the issue.
-rw-r--r-- | libcxx/test/libcxx-03/system_reserved_names.gen.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libcxx/test/libcxx-03/system_reserved_names.gen.py b/libcxx/test/libcxx-03/system_reserved_names.gen.py index a4f2928..43c0088 100644 --- a/libcxx/test/libcxx-03/system_reserved_names.gen.py +++ b/libcxx/test/libcxx-03/system_reserved_names.gen.py @@ -29,10 +29,8 @@ for header in public_headers: {lit_header_restrictions.get(header, '')} {lit_header_undeprecations.get(header, '')} -// UNSUPPORTED: FROZEN-CXX03-HEADERS-FIXME - // This is required to detect the platform we're building for below. -#include <__config> +#include <__cxx03/__config> #define SYSTEM_RESERVED_NAME This name should not be used in libc++ |