Blame SOURCES/0016-Conditionalize-test-for-hashtable-bucket-sizes-on-__.patch

e88ed2
From db8f53df0be1daeda3159c1413549ff40696c710 Mon Sep 17 00:00:00 2001
e88ed2
From: David Malcolm <dmalcolm@redhat.com>
e88ed2
Date: Thu, 2 Sep 2021 17:02:33 -0400
e88ed2
Subject: [PATCH 16/17] Conditionalize test for hashtable bucket sizes on
e88ed2
 __LIBSTDCXX_SO_VERSION >= 11
e88ed2
e88ed2
These tests were added upstream 2020-01-20 as part of:
e88ed2
  libstdc++: Do not over-size hashtable buckets on range insertion
e88ed2
    https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=6dcf042368012e2d7ce1626ee5d378bf3ad0ccfc
e88ed2
e88ed2
but fail when run in DTS against a system libstdc++.so from an older GCC.
e88ed2
e88ed2
In particular, _M_insert_unique_node from the header is using the older
e88ed2
implementation of
e88ed2
  std::__detail::_Prime_rehash_policy::_M_need_rehash
e88ed2
from the dynamic library.
e88ed2
e88ed2
   23: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF std::__detail::_Prime_rehash_policy::_M_need_rehash(unsigned long, unsigned long, unsigned long) const@GLIBCXX_3.4.18 (5)
e88ed2
  412: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF std::__detail::_Prime_rehash_policy::_M_need_rehash(unsigned long, unsigned long, unsigned long) const@@GLIBCXX_3.4.18
e88ed2
---
e88ed2
 .../23_containers/unordered_set/cons/bucket_hint.cc    | 10 ++++++++++
e88ed2
 .../23_containers/unordered_set/modifiers/insert.cc    |  9 +++++++++
e88ed2
 2 files changed, 19 insertions(+)
e88ed2
e88ed2
diff --git a/libstdc++-v3/testsuite/23_containers/unordered_set/cons/bucket_hint.cc b/libstdc++-v3/testsuite/23_containers/unordered_set/cons/bucket_hint.cc
e88ed2
index a3b014a3a..af231e54e 100644
e88ed2
--- a/libstdc++-v3/testsuite/23_containers/unordered_set/cons/bucket_hint.cc
e88ed2
+++ b/libstdc++-v3/testsuite/23_containers/unordered_set/cons/bucket_hint.cc
e88ed2
@@ -29,7 +29,11 @@ void test01()
e88ed2
   a.reserve(2);
e88ed2
 
e88ed2
   std::unordered_set<int> b({ 0, 1, 0, 1, 0, 1, 0, 1 }, a.bucket_count());
e88ed2
+
e88ed2
+  // Fixed upstream in GCC 11
e88ed2
+#if __LIBSTDCXX_SO_VERSION >= 11
e88ed2
   VERIFY( b.bucket_count() == a.bucket_count() );
e88ed2
+#endif
e88ed2
 }
e88ed2
 
e88ed2
 void test02()
e88ed2
@@ -40,7 +44,10 @@ void test02()
e88ed2
   std::vector<int> v { 0, 1, 0, 1, 0, 1, 0, 1, 0, 1 };
e88ed2
 
e88ed2
   std::unordered_set<int> b(v.begin(), v.end(), a.bucket_count());
e88ed2
+  // Fixed upstream in GCC 11
e88ed2
+#if __LIBSTDCXX_SO_VERSION >= 11
e88ed2
   VERIFY( b.bucket_count() == a.bucket_count() );
e88ed2
+#endif
e88ed2
 }
e88ed2
 
e88ed2
 void test03()
e88ed2
@@ -51,7 +58,10 @@ void test03()
e88ed2
   std::forward_list<int> fl { 0, 1, 0, 1, 0, 1, 0, 1, 0, 1 };
e88ed2
 
e88ed2
   std::unordered_set<int> b(fl.begin(), fl.end(), a.bucket_count());
e88ed2
+  // Fixed upstream in GCC 11
e88ed2
+#if __LIBSTDCXX_SO_VERSION >= 11
e88ed2
   VERIFY( b.bucket_count() == a.bucket_count() );
e88ed2
+#endif
e88ed2
 }
e88ed2
 
e88ed2
 int main()
e88ed2
diff --git a/libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/insert.cc b/libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/insert.cc
e88ed2
index 015c2f872..aae8298ae 100644
e88ed2
--- a/libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/insert.cc
e88ed2
+++ b/libstdc++-v3/testsuite/23_containers/unordered_set/modifiers/insert.cc
e88ed2
@@ -30,7 +30,10 @@ void test01()
e88ed2
 
e88ed2
   auto bkt_count = a.bucket_count();
e88ed2
   a.insert({ 0, 1, 0, 1, 0, 1, 0, 1 });
e88ed2
+  // Fixed upstream in GCC 11
e88ed2
+#if __LIBSTDCXX_SO_VERSION >= 11
e88ed2
   VERIFY( a.bucket_count() == bkt_count );
e88ed2
+#endif
e88ed2
 }
e88ed2
 
e88ed2
 void test02()
e88ed2
@@ -42,7 +45,10 @@ void test02()
e88ed2
 
e88ed2
   auto bkt_count = a.bucket_count();
e88ed2
   a.insert(v.begin(), v.end());
e88ed2
+  // Fixed upstream in GCC 11
e88ed2
+#if __LIBSTDCXX_SO_VERSION >= 11
e88ed2
   VERIFY( a.bucket_count() == bkt_count );
e88ed2
+#endif
e88ed2
 }
e88ed2
 
e88ed2
 void test03()
e88ed2
@@ -54,7 +60,10 @@ void test03()
e88ed2
 
e88ed2
   auto bkt_count = a.bucket_count();
e88ed2
   a.insert(fl.begin(), fl.end());
e88ed2
+  // Fixed upstream in GCC 11
e88ed2
+#if __LIBSTDCXX_SO_VERSION >= 11
e88ed2
   VERIFY( a.bucket_count() == bkt_count );
e88ed2
+#endif
e88ed2
 }
e88ed2
 
e88ed2
 int main()
e88ed2
-- 
e88ed2
2.31.1
e88ed2