Blame SOURCES/0015-Conditionalize-test-for-PR-libstdc-87135-on-__LIBSTD.patch

759f0e
From 992665eab6c48d6a4819f42509346d24b277485d Mon Sep 17 00:00:00 2001
759f0e
From: David Malcolm <dmalcolm@redhat.com>
759f0e
Date: Thu, 2 Sep 2021 16:17:29 -0400
759f0e
Subject: [PATCH 15/17] Conditionalize test for PR libstdc++/87135 on
759f0e
 __LIBSTDCXX_SO_VERSION >= 9
759f0e
759f0e
This VERIFY was added upstream 2018-09-18 as part of:
759f0e
  re PR libstdc++/87135 ([C++17] unordered containers violate iterator validity requirements)
759f0e
    https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=a521e62615e439aea7502a52fd0f8a21eaa6304f
759f0e
759f0e
but fails when run in DTS against a system libstdc++.so from an older GCC.
759f0e
759f0e
In particular, rehash from the header is using
759f0e
  std::__detail::_Prime_rehash_policy::_M_next_bkt
759f0e
from the system .so:
759f0e
759f0e
   12: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF std::__detail::_Prime_rehash_policy::_M_next_bkt(unsigned long) const@GLIBCXX_3.4.18 (5)
759f0e
  225: 0000000000000000      0 FUNC    GLOBAL DEFAULT    UNDEF std::__detail::_Prime_rehash_policy::_M_next_bkt(unsigned long) const@@GLIBCXX_3.4.18
759f0e
---
759f0e
 .../23_containers/unordered_map/modifiers/reserve.cc          | 4 ++++
759f0e
 1 file changed, 4 insertions(+)
759f0e
759f0e
diff --git a/libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/reserve.cc b/libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/reserve.cc
759f0e
index 58c8924b9..4c79ec2e6 100644
759f0e
--- a/libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/reserve.cc
759f0e
+++ b/libstdc++-v3/testsuite/23_containers/unordered_map/modifiers/reserve.cc
759f0e
@@ -46,7 +46,11 @@ void test01()
759f0e
 
759f0e
 	  // As long as we insert less than the reserved number of elements we
759f0e
 	  // shouldn't experiment any rehash.
759f0e
+
759f0e
+	  // Fixed upstream in GCC 9
759f0e
+#if __LIBSTDCXX_SO_VERSION >= 9
759f0e
 	  VERIFY( m.bucket_count() == bkts );
759f0e
+#endif
759f0e
 
759f0e
 	  VERIFY( m.load_factor() <= m.max_load_factor() );
759f0e
 	}
759f0e
-- 
759f0e
2.31.1
759f0e