|
|
0b9bbe |
From 59388ee3dac5c737086ed1f83f552a44481a2213 Mon Sep 17 00:00:00 2001
|
|
|
0b9bbe |
From: David Malcolm <dmalcolm@redhat.com>
|
|
|
0b9bbe |
Date: Tue, 31 Aug 2021 16:08:57 -0400
|
|
|
0b9bbe |
Subject: [PATCH 06/17] Don't assume has_facet<codecvt_c16> when run against
|
|
|
0b9bbe |
system libstdc++
|
|
|
0b9bbe |
|
|
|
0b9bbe |
Upstream commit 2019-02-19:
|
|
|
0b9bbe |
P0482R5 char8_t: Standard library support
|
|
|
0b9bbe |
https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=c124af936b6b225eb548ccdd7f01400511d784dc
|
|
|
0b9bbe |
added new locale facets for char8_t.
|
|
|
0b9bbe |
|
|
|
0b9bbe |
has_facet<codecvt_c16> returns false, as it is using the std::locale the system libstdc++:
|
|
|
0b9bbe |
|
|
|
0b9bbe |
$ eu-readelf -s char16_t-char8_t.exe |c++filt |grep UNDEF|grep locale
|
|
|
0b9bbe |
3: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::classic()@GLIBCXX_3.4 (2)
|
|
|
0b9bbe |
8: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::locale(std::locale const&)@GLIBCXX_3.4 (2)
|
|
|
0b9bbe |
13: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::id::_M_id() const@GLIBCXX_3.4 (2)
|
|
|
0b9bbe |
22: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::~locale()@GLIBCXX_3.4 (2)
|
|
|
0b9bbe |
64: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::classic()@@GLIBCXX_3.4
|
|
|
0b9bbe |
76: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::locale(std::locale const&)@@GLIBCXX_3.4
|
|
|
0b9bbe |
89: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::id::_M_id() const@@GLIBCXX_3.4
|
|
|
0b9bbe |
108: 0000000000000000 0 FUNC GLOBAL DEFAULT UNDEF std::locale::~locale()@@GLIBCXX_3.4
|
|
|
0b9bbe |
|
|
|
0b9bbe |
Hence this patch tweaks tests so that they bail out if run against an older std::locale.
|
|
|
0b9bbe |
---
|
|
|
0b9bbe |
libstdc++-v3/testsuite/22_locale/codecvt/char16_t-char8_t.cc | 3 ++-
|
|
|
0b9bbe |
libstdc++-v3/testsuite/22_locale/codecvt/char16_t.cc | 3 ++-
|
|
|
0b9bbe |
libstdc++-v3/testsuite/22_locale/codecvt/char32_t-char8_t.cc | 3 ++-
|
|
|
0b9bbe |
libstdc++-v3/testsuite/22_locale/codecvt/char32_t.cc | 3 ++-
|
|
|
0b9bbe |
libstdc++-v3/testsuite/22_locale/codecvt/utf8-char8_t.cc | 2 ++
|
|
|
0b9bbe |
libstdc++-v3/testsuite/22_locale/codecvt/utf8.cc | 2 ++
|
|
|
0b9bbe |
6 files changed, 12 insertions(+), 4 deletions(-)
|
|
|
0b9bbe |
|
|
|
0b9bbe |
diff --git a/libstdc++-v3/testsuite/22_locale/codecvt/char16_t-char8_t.cc b/libstdc++-v3/testsuite/22_locale/codecvt/char16_t-char8_t.cc
|
|
|
0b9bbe |
index 71a23bef4..d4aa519a2 100644
|
|
|
0b9bbe |
--- a/libstdc++-v3/testsuite/22_locale/codecvt/char16_t-char8_t.cc
|
|
|
0b9bbe |
+++ b/libstdc++-v3/testsuite/22_locale/codecvt/char16_t-char8_t.cc
|
|
|
0b9bbe |
@@ -31,7 +31,8 @@ test01()
|
|
|
0b9bbe |
using namespace std;
|
|
|
0b9bbe |
typedef codecvt<char16_t, char8_t, mbstate_t> codecvt_c16;
|
|
|
0b9bbe |
locale loc_c = locale::classic();
|
|
|
0b9bbe |
- VERIFY(has_facet<codecvt_c16>(loc_c));
|
|
|
0b9bbe |
+ if (!has_facet<codecvt_c16>(loc_c))
|
|
|
0b9bbe |
+ return;
|
|
|
0b9bbe |
const codecvt_c16* const cvt = &use_facet<codecvt_c16>(loc_c);
|
|
|
0b9bbe |
|
|
|
0b9bbe |
VERIFY(!cvt->always_noconv());
|
|
|
0b9bbe |
diff --git a/libstdc++-v3/testsuite/22_locale/codecvt/char16_t.cc b/libstdc++-v3/testsuite/22_locale/codecvt/char16_t.cc
|
|
|
0b9bbe |
index 7b5ce126d..05c77b2b1 100644
|
|
|
0b9bbe |
--- a/libstdc++-v3/testsuite/22_locale/codecvt/char16_t.cc
|
|
|
0b9bbe |
+++ b/libstdc++-v3/testsuite/22_locale/codecvt/char16_t.cc
|
|
|
0b9bbe |
@@ -29,7 +29,8 @@ test01()
|
|
|
0b9bbe |
using namespace std;
|
|
|
0b9bbe |
typedef codecvt<char16_t, char, mbstate_t> codecvt_c16;
|
|
|
0b9bbe |
locale loc_c = locale::classic();
|
|
|
0b9bbe |
- VERIFY(has_facet<codecvt_c16>(loc_c));
|
|
|
0b9bbe |
+ if (!has_facet<codecvt_c16>(loc_c))
|
|
|
0b9bbe |
+ return;
|
|
|
0b9bbe |
const codecvt_c16* const cvt = &use_facet<codecvt_c16>(loc_c);
|
|
|
0b9bbe |
|
|
|
0b9bbe |
VERIFY(!cvt->always_noconv());
|
|
|
0b9bbe |
diff --git a/libstdc++-v3/testsuite/22_locale/codecvt/char32_t-char8_t.cc b/libstdc++-v3/testsuite/22_locale/codecvt/char32_t-char8_t.cc
|
|
|
0b9bbe |
index f30ae22e9..281969e9b 100644
|
|
|
0b9bbe |
--- a/libstdc++-v3/testsuite/22_locale/codecvt/char32_t-char8_t.cc
|
|
|
0b9bbe |
+++ b/libstdc++-v3/testsuite/22_locale/codecvt/char32_t-char8_t.cc
|
|
|
0b9bbe |
@@ -33,7 +33,8 @@ test01()
|
|
|
0b9bbe |
using namespace std;
|
|
|
0b9bbe |
typedef codecvt<char32_t, char8_t, mbstate_t> codecvt_c32;
|
|
|
0b9bbe |
locale loc_c = locale::classic();
|
|
|
0b9bbe |
- VERIFY(has_facet<codecvt_c32>(loc_c));
|
|
|
0b9bbe |
+ if (!has_facet<codecvt_c32>(loc_c))
|
|
|
0b9bbe |
+ return;
|
|
|
0b9bbe |
const codecvt_c32* const cvt = &use_facet<codecvt_c32>(loc_c);
|
|
|
0b9bbe |
|
|
|
0b9bbe |
VERIFY(!cvt->always_noconv());
|
|
|
0b9bbe |
diff --git a/libstdc++-v3/testsuite/22_locale/codecvt/char32_t.cc b/libstdc++-v3/testsuite/22_locale/codecvt/char32_t.cc
|
|
|
0b9bbe |
index 558ba9145..82980b702 100644
|
|
|
0b9bbe |
--- a/libstdc++-v3/testsuite/22_locale/codecvt/char32_t.cc
|
|
|
0b9bbe |
+++ b/libstdc++-v3/testsuite/22_locale/codecvt/char32_t.cc
|
|
|
0b9bbe |
@@ -31,7 +31,8 @@ test01()
|
|
|
0b9bbe |
using namespace std;
|
|
|
0b9bbe |
typedef codecvt<char32_t, char, mbstate_t> codecvt_c32;
|
|
|
0b9bbe |
locale loc_c = locale::classic();
|
|
|
0b9bbe |
- VERIFY(has_facet<codecvt_c32>(loc_c));
|
|
|
0b9bbe |
+ if (!has_facet<codecvt_c32>(loc_c))
|
|
|
0b9bbe |
+ return;
|
|
|
0b9bbe |
const codecvt_c32* const cvt = &use_facet<codecvt_c32>(loc_c);
|
|
|
0b9bbe |
|
|
|
0b9bbe |
VERIFY(!cvt->always_noconv());
|
|
|
0b9bbe |
diff --git a/libstdc++-v3/testsuite/22_locale/codecvt/utf8-char8_t.cc b/libstdc++-v3/testsuite/22_locale/codecvt/utf8-char8_t.cc
|
|
|
0b9bbe |
index 5eab05ba2..d6f663ce6 100644
|
|
|
0b9bbe |
--- a/libstdc++-v3/testsuite/22_locale/codecvt/utf8-char8_t.cc
|
|
|
0b9bbe |
+++ b/libstdc++-v3/testsuite/22_locale/codecvt/utf8-char8_t.cc
|
|
|
0b9bbe |
@@ -34,6 +34,8 @@ void test(const C* from)
|
|
|
0b9bbe |
std::mbstate_t state{};
|
|
|
0b9bbe |
char8_t buf[16] = { };
|
|
|
0b9bbe |
using test_type = std::codecvt<C, char8_t, std::mbstate_t>;
|
|
|
0b9bbe |
+ if (!std::has_facet<test_type>(std::locale::classic()))
|
|
|
0b9bbe |
+ return;
|
|
|
0b9bbe |
const test_type& cvt = std::use_facet<test_type>(std::locale::classic());
|
|
|
0b9bbe |
auto from_end = from + len;
|
|
|
0b9bbe |
auto from_next = from;
|
|
|
0b9bbe |
diff --git a/libstdc++-v3/testsuite/22_locale/codecvt/utf8.cc b/libstdc++-v3/testsuite/22_locale/codecvt/utf8.cc
|
|
|
0b9bbe |
index b1b3cff31..167bc0ca3 100644
|
|
|
0b9bbe |
--- a/libstdc++-v3/testsuite/22_locale/codecvt/utf8.cc
|
|
|
0b9bbe |
+++ b/libstdc++-v3/testsuite/22_locale/codecvt/utf8.cc
|
|
|
0b9bbe |
@@ -32,6 +32,8 @@ void test(const C* from)
|
|
|
0b9bbe |
std::mbstate_t state{};
|
|
|
0b9bbe |
char buf[16] = { };
|
|
|
0b9bbe |
using test_type = std::codecvt<C, char, std::mbstate_t>;
|
|
|
0b9bbe |
+ if (!std::has_facet<test_type>(std::locale::classic()))
|
|
|
0b9bbe |
+ return;
|
|
|
0b9bbe |
const test_type& cvt = std::use_facet<test_type>(std::locale::classic());
|
|
|
0b9bbe |
auto from_end = from + len;
|
|
|
0b9bbe |
auto from_next = from;
|
|
|
0b9bbe |
--
|
|
|
0b9bbe |
2.31.1
|
|
|
0b9bbe |
|