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

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