1 // Copyright (C) 2004-2025 Free Software Foundation, Inc.
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
24 #include <ext/mt_allocator.h>
25 #include <bits/functexcept.h>
38 typedef __gnu_cxx::__mt_alloc
<value_t
> allocator_t
;
40 typedef std::char_traits
<value_t
> traits_t
;
41 typedef std::basic_string
<value_t
, traits_t
, allocator_t
> string_t
;
44 s
+= "west beach, indiana dunes";
54 std::__throw_bad_exception();
56 catch (const std::exception
& e
)
62 try_function_random_fail()
64 long seed
= lrand48();
70 s
<< "random_throw, seed: " << seed
<< std::endl
;
76 try_throw_exception();
79 // Randomly throw. See if other threads cleanup.
80 std::__throw_bad_exception();
83 #if __cplusplus >= 201103L
84 # error "must be compiled with C++98"
87 erase_external(std::set
<int>& s
)
88 { s
.erase(s
.begin()); }
91 erase_external(std::multiset
<int>& s
)
92 { s
.erase(s
.begin()); }
95 erase_external(std::map
<int, int>& s
)
96 { s
.erase(s
.begin()); }
99 erase_external(std::multimap
<int, int>& s
)
100 { s
.erase(s
.begin()); }
103 erase_external_iterators(std::set
<int>& s
)
105 typedef typename
std::set
<int>::iterator iterator_type
;
106 iterator_type iter
= s
.begin();
107 s
.erase(iter
, ++iter
);
111 erase_external_iterators(std::multiset
<int>& s
)
113 typedef typename
std::multiset
<int>::iterator iterator_type
;
114 iterator_type iter
= s
.begin();
115 s
.erase(iter
, ++iter
);
119 erase_external_iterators(std::map
<int, int>& s
)
121 typedef typename
std::map
<int, int>::iterator iterator_type
;
122 iterator_type iter
= s
.begin();
123 s
.erase(iter
, ++iter
);
128 erase_external_iterators(std::multimap
<int, int>& s
)
130 typedef typename
std::multimap
<int, int>::iterator iterator_type
;
131 iterator_type iter
= s
.begin();
132 s
.erase(iter
, ++iter
);
137 // PR libstdc++/103240
142 const std::type_info
& pr103240_private_S
= typeid(S
);
145 } // end namepace __gnu_test