3 // Utility subroutines for the C++ library testsuite.
5 // Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 2, or (at your option)
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING. If not, write to the Free
20 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
23 // As a special exception, you may use this file as part of a free software
24 // library without restriction. Specifically, if other files instantiate
25 // templates or use macros or inline functions from this file, or you compile
26 // this file and link it with other files to produce an executable, this
27 // file does not by itself cause the resulting executable to be covered by
28 // the GNU General Public License. This exception does not however
29 // invalidate any other reasons why the executable file might be covered by
30 // the GNU General Public License.
32 #include <testsuite_hooks.h>
34 #ifdef _GLIBCXX_RES_LIMITS
37 #include <sys/resource.h>
46 // If we have <sys/types.h>, <sys/ipc.h>, and <sys/sem.h>, then assume
47 // that System V semaphores are available.
48 #if defined(_GLIBCXX_HAVE_SYS_TYPES_H) \
49 && defined(_GLIBCXX_HAVE_SYS_IPC_H) \
50 && defined(_GLIBCXX_HAVE_SYS_SEM_H)
51 #define _GLIBCXX_SYSV_SEM
54 #ifdef _GLIBCXX_SYSV_SEM
55 #include <sys/types.h>
62 #ifdef _GLIBCXX_RES_LIMITS
64 set_memory_limits(float size
)
67 // Cater to the absence of rlim_t.
68 __typeof__ (r
.rlim_cur
) limit
= (__typeof__ (r
.rlim_cur
))(size
* 1048576);
70 // Heap size, seems to be common.
71 #if _GLIBCXX_HAVE_LIMIT_DATA
72 getrlimit(RLIMIT_DATA
, &r
);
74 setrlimit(RLIMIT_DATA
, &r
);
78 #if _GLIBCXX_HAVE_LIMIT_RSS
79 getrlimit(RLIMIT_RSS
, &r
);
81 setrlimit(RLIMIT_RSS
, &r
);
84 // Mapped memory (brk + mmap).
85 #if _GLIBCXX_HAVE_LIMIT_VMEM
86 getrlimit(RLIMIT_VMEM
, &r
);
88 setrlimit(RLIMIT_VMEM
, &r
);
92 // On x86_64-linux, the default is -z max-page-size=0x200000
93 // which means up to 2MB of address space are accounted for
94 // PROT_NONE mappings between text and data segments of
95 // each shared library. There are 4 shared libs involved
96 // in addition to the dynamic linker. Use at least 16MB address space
98 #if defined(__x86_64__) && defined(__linux__)
102 // On HP-UX 11.23, a trivial C++ program that sets RLIMIT_AS to
103 // anything less than 128MB cannot "malloc" even 1K of memory.
104 // Therefore, we skip RLIMIT_AS on HP-UX.
105 #if _GLIBCXX_HAVE_LIMIT_AS && !defined(__hpux__)
106 getrlimit(RLIMIT_AS
, &r
);
108 setrlimit(RLIMIT_AS
, &r
);
114 set_memory_limits(float) { }
117 #ifdef _GLIBCXX_RES_LIMITS
119 set_file_limit(unsigned long size
)
121 #if _GLIBCXX_HAVE_LIMIT_FSIZE
123 // Cater to the absence of rlim_t.
124 __typeof__ (r
.rlim_cur
) limit
= (__typeof__ (r
.rlim_cur
))(size
);
126 getrlimit(RLIMIT_FSIZE
, &r
);
128 setrlimit(RLIMIT_FSIZE
, &r
);
134 set_file_limit(unsigned long) { }
138 verify_demangle(const char* mangled
, const char* wanted
)
141 const char* s
= abi::__cxa_demangle(mangled
, 0, 0, &status
);
147 s
= "error code = 0: success";
150 s
= "error code = -1: memory allocation failure";
153 s
= "error code = -2: invalid mangled name";
156 s
= "error code = -3: invalid arguments";
159 s
= "error code unknown - who knows what happened";
163 std::string
w(wanted
);
165 std::__throw_runtime_error(s
);
169 run_tests_wrapped_locale(const char* name
, const func_callback
& l
)
174 // Set the global locale.
175 locale loc_name
= locale(name
);
176 locale orig
= locale::global(loc_name
);
178 const char* res
= setlocale(LC_ALL
, name
);
181 string preLC_ALL
= res
;
182 const func_callback::test_type
* tests
= l
.tests();
183 for (int i
= 0; i
< l
.size(); ++i
)
185 string postLC_ALL
= setlocale(LC_ALL
, NULL
);
186 VERIFY( preLC_ALL
== postLC_ALL
);
190 string
s("LC_ALL for ");
192 __throw_runtime_error(s
.c_str());
197 run_tests_wrapped_env(const char* name
, const char* env
,
198 const func_callback
& l
)
203 #ifdef _GLIBCXX_HAVE_SETENV
204 // Set the global locale.
205 locale loc_name
= locale(name
);
206 locale orig
= locale::global(loc_name
);
208 // Set environment variable env to value in name.
209 const char* oldENV
= getenv(env
);
210 if (!setenv(env
, name
, 1))
212 const func_callback::test_type
* tests
= l
.tests();
213 for (int i
= 0; i
< l
.size(); ++i
)
215 setenv(env
, oldENV
? oldENV
: "", 1);
222 __throw_runtime_error(s
.c_str());
227 counter::size_type
counter::count
= 0;
228 unsigned int copy_constructor::count_
= 0;
229 unsigned int copy_constructor::throw_on_
= 0;
230 unsigned int assignment_operator::count_
= 0;
231 unsigned int assignment_operator::throw_on_
= 0;
232 unsigned int destructor::_M_count
= 0;
233 int copy_tracker::next_id_
= 0;
235 #ifdef _GLIBCXX_SYSV_SEM
236 // This union is not declared in system headers. Instead, it must
237 // be defined by user programs.
241 struct semid_ds
*buf
;
242 unsigned short *array
;
246 semaphore::semaphore()
248 #ifdef _GLIBCXX_SYSV_SEM
249 // Remeber the PID for the process that created the semaphore set
250 // so that only one process will destroy the set.
253 // GLIBC does not define SEM_R and SEM_A.
262 // Get a semaphore set with one semaphore.
263 sem_set_
= semget(IPC_PRIVATE
, 1, SEM_R
| SEM_A
);
265 std::__throw_runtime_error("could not obtain semaphore set");
267 // Initialize the semaphore.
270 if (semctl(sem_set_
, 0, SETVAL
, val
) == -1)
271 std::__throw_runtime_error("could not initialize semaphore");
273 // There are no semaphores on this system. We have no way to mark
274 // a test as "unsupported" at runtime, so we just exit, pretending
275 // that the test passed.
280 semaphore::~semaphore()
282 #ifdef _GLIBCXX_SYSV_SEM
284 // Destroy the semaphore set only in the process that created it.
285 if (pid_
== getpid())
286 semctl(sem_set_
, 0, IPC_RMID
, val
);
293 #ifdef _GLIBCXX_SYSV_SEM
294 struct sembuf op
[1] =
298 if (semop(sem_set_
, op
, 1) == -1)
299 std::__throw_runtime_error("could not signal semaphore");
306 #ifdef _GLIBCXX_SYSV_SEM
307 struct sembuf op
[1] =
311 if (semop(sem_set_
, op
, 1) == -1)
312 std::__throw_runtime_error("could not wait for semaphore");
316 // For use in 22_locale/time_get and time_put.
318 test_tm(int sec
, int min
, int hour
, int mday
, int mon
,
319 int year
, int wday
, int yday
, int isdst
)
330 tmp
.tm_isdst
= isdst
;
333 }; // namespace __gnu_test