Blame SOURCES/0014-Conditionalize-tests-for-PR-libstdc-98466-on-__LIBST.patch

a46658
From fa770c25013df537c41d0929c4202b0a774a6a75 Mon Sep 17 00:00:00 2001
a46658
From: David Malcolm <dmalcolm@redhat.com>
a46658
Date: Thu, 2 Sep 2021 15:27:59 -0400
a46658
Subject: [PATCH 14/17] Conditionalize tests for PR libstdc++/98466 on
a46658
 __LIBSTDCXX_SO_VERSION >= 11
a46658
a46658
The tests:
a46658
  23_containers/deque/debug/98466.cc
a46658
  23_containers/unordered_map/debug/98466.cc
a46658
were added upstream 2021-01-01 as part of:
a46658
  libstdc++: Implement N3644 for _GLIBCXX_DEBUG iterators
a46658
    https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=05a30af3f237984b4dcf1dbbc17fdac583c46506
a46658
but fail when run in DTS against a system libstdc++.so
a46658
from an older GCC.
a46658
a46658
In particular, they use the older implementation of _M_can_compare from
a46658
the dynamic library:
a46658
a46658
$ eu-readelf -s 98466.exe | grep can_compare | c++filt
a46658
   11: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF __gnu_debug::_Safe_iterator_base::_M_can_compare(__gnu_debug::_Safe_iterator_base const&) const@GLIBCXX_3.4 (4)
a46658
  157: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF __gnu_debug::_Safe_iterator_base::_M_can_compare(__gnu_debug::_Safe_iterator_base const&) const@@GLIBCXX_3.4
a46658
---
a46658
 .../testsuite/23_containers/deque/debug/98466.cc     |  6 ++++++
a46658
 .../23_containers/unordered_map/debug/98466.cc       | 12 ++++++++++++
a46658
 2 files changed, 18 insertions(+)
a46658
a46658
diff --git a/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc b/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc
a46658
index c2d793374..e92d719bf 100644
a46658
--- a/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc
a46658
+++ b/libstdc++-v3/testsuite/23_containers/deque/debug/98466.cc
a46658
@@ -26,11 +26,17 @@ void test01()
a46658
 {
a46658
   typedef typename __gnu_debug::deque<int>::iterator It;
a46658
   It it = It();
a46658
+  // Fixed upstream in GCC 11
a46658
+#if __LIBSTDCXX_SO_VERSION >= 11
a46658
   VERIFY( it == it );
a46658
+#endif
a46658
 
a46658
   typedef typename __gnu_debug::deque<int>::const_iterator Cit;
a46658
   Cit cit = Cit();
a46658
+  // Fixed upstream in GCC 11
a46658
+#if __LIBSTDCXX_SO_VERSION >= 11
a46658
   VERIFY( cit == cit );
a46658
+#endif
a46658
 }
a46658
 
a46658
 int main()
a46658
diff --git a/libstdc++-v3/testsuite/23_containers/unordered_map/debug/98466.cc b/libstdc++-v3/testsuite/23_containers/unordered_map/debug/98466.cc
a46658
index cc22b9ff8..3a1b6cd32 100644
a46658
--- a/libstdc++-v3/testsuite/23_containers/unordered_map/debug/98466.cc
a46658
+++ b/libstdc++-v3/testsuite/23_containers/unordered_map/debug/98466.cc
a46658
@@ -25,16 +25,28 @@
a46658
 void test01()
a46658
 {
a46658
   __gnu_debug::unordered_map<int, int>::iterator it{};
a46658
+  // Fixed upstream in GCC 11
a46658
+#if __LIBSTDCXX_SO_VERSION >= 11
a46658
   VERIFY( it == it );
a46658
+#endif
a46658
 
a46658
   __gnu_debug::unordered_map<int, int>::const_iterator cit{};
a46658
+  // Fixed upstream in GCC 11
a46658
+#if __LIBSTDCXX_SO_VERSION >= 11
a46658
   VERIFY( cit == cit );
a46658
+#endif
a46658
 
a46658
   __gnu_debug::unordered_map<int, int>::local_iterator lit{};
a46658
+  // Fixed upstream in GCC 11
a46658
+#if __LIBSTDCXX_SO_VERSION >= 11
a46658
   VERIFY( lit == lit );
a46658
+#endif
a46658
 
a46658
   __gnu_debug::unordered_map<int, int>::const_local_iterator clit{};
a46658
+  // Fixed upstream in GCC 11
a46658
+#if __LIBSTDCXX_SO_VERSION >= 11
a46658
   VERIFY( clit == clit );
a46658
+#endif
a46658
 }
a46658
 
a46658
 int main()
a46658
-- 
a46658
2.31.1
a46658