2 // Utility subroutines for the C++ library testsuite.
4 // Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 // This file provides the following:
33 // 1) VERIFY(), via DEBUG_ASSERT, from Brent Verner <brent@rcfile.org>.
34 // This file is included in the various testsuite programs to provide
35 // #define(able) assert() behavior for debugging/testing. It may be
36 // a suitable location for other furry woodland creatures as well.
38 // 2) set_memory_limits()
39 // set_memory_limits() uses setrlimit() to restrict dynamic memory
40 // allocation. We provide a default memory limit if none is passed by the
41 // calling application. The argument to set_memory_limits() is the
42 // limit in megabytes (a floating-point number). If _GLIBCPP_MEM_LIMITS is
43 // not #defined before including this header, then no limiting is attempted.
46 // This is a POD with a static data member, gnu_counting_struct::count,
47 // which starts at zero, increments on instance construction, and decrements
48 // on instance destruction. "assert_count(n)" can be called to VERIFY()
49 // that the count equals N.
51 // 4) copy_tracker, from Stephen M. Webb <stephen@bregmasoft.com>.
52 // A class with nontrivial ctor/dtor that provides the ability to track the
53 // number of copy ctors and dtors, and will throw on demand during copy.
55 // 5) pod_char, pod_int, , abstract character classes and
56 // char_traits specializations for testing instantiations.
58 #ifndef _GLIBCPP_TESTSUITE_HOOKS_H
59 #define _GLIBCPP_TESTSUITE_HOOKS_H
61 #include <bits/c++config.h>
62 #include <bits/functexcept.h>
66 # define VERIFY(fn) assert(fn)
68 # define VERIFY(fn) test &= (fn)
73 namespace __gnu_cxx_test
75 // All macros are defined in GLIBCPP_CONFIGURE_TESTSUITE and imported
78 // Set memory limits if possible, if not set to 0.
79 #ifndef _GLIBCPP_MEM_LIMITS
80 # define MEMLIMIT_MB 0
83 # define MEMLIMIT_MB 16.0
87 set_memory_limits(float __size
= MEMLIMIT_MB
);
90 // Check mangled name demangles (using __cxa_demangle) as expected.
92 verify_demangle(const char* mangled
, const char* wanted
);
95 // Simple callback structure for variable numbers of tests (all with
96 // same signature). Assume all unit tests are of the signature
98 typedef void (*test_func
) (void);
99 typedef std::list
<test_func
> func_callback
;
101 // Run select unit tests after setting global locale.
103 run_tests_wrapped_locale(const char*, const func_callback
&);
105 // Run select unit tests after setting environment variables.
107 run_tests_wrapped_env(const char*, const char*, const func_callback
&);
109 // Try to create a locale with the given name. If it fails, bail.
111 try_named_locale(const char* name
);
125 struct pod_unsigned_int
145 // Specifically and glaringly-obviously marked 'signed' so that when
146 // COUNT mistakenly goes negative, we can track the patterns of
147 // deletions more easily.
148 typedef signed int size_type
;
149 static size_type count
;
150 counter() { ++count
; }
151 counter (const counter
&) { ++count
; }
152 ~counter() { --count
; }
155 #define assert_count(n) VERIFY(__gnu_cxx_test::counter::count == n)
157 // A (static) class for counting copy constructors and possibly throwing an
158 // exception on a desired count.
159 class copy_constructor
163 count() { return count_
; }
169 if (count_
== throw_on_
)
170 __throw_exception_again
"copy constructor exception";
181 throw_on(unsigned int count
) { throw_on_
= count
; }
184 static unsigned int count_
;
185 static unsigned int throw_on_
;
188 // A (static) class for counting assignment operator calls and
189 // possibly throwing an exception on a desired count.
190 class assignment_operator
194 count() { return count_
; }
200 if (count_
== throw_on_
)
201 __throw_exception_again
"assignment operator exception";
212 throw_on(unsigned int count
) { throw_on_
= count
; }
215 static unsigned int count_
;
216 static unsigned int throw_on_
;
219 // A (static) class for tracking calls to an object's destructor.
224 count() { return _M_count
; }
227 mark_call() { _M_count
++; }
230 reset() { _M_count
= 0; }
233 static unsigned int _M_count
;
236 // An class of objects that can be used for validating various
237 // behaviours and guarantees of containers and algorithms defined in
238 // the standard library.
242 // Creates a copy-tracking object with the given ID number. If
243 // "throw_on_copy" is set, an exception will be thrown if an
244 // attempt is made to copy this object.
245 copy_tracker(int id
= next_id_
--, bool throw_on_copy
= false)
246 : id_(id
) , throw_on_copy_(throw_on_copy
) { }
248 // Copy-constructs the object, marking a call to the copy
249 // constructor and forcing an exception if indicated.
250 copy_tracker(const copy_tracker
& rhs
)
251 : id_(rhs
.id()), throw_on_copy_(rhs
.throw_on_copy_
)
254 copy_constructor::throw_on(copy_constructor::count() + 1);
255 copy_constructor::mark_call();
258 // Assigns the value of another object to this one, tracking the
259 // number of times this member function has been called and if the
260 // other object is supposed to throw an exception when it is
261 // copied, well, make it so.
263 operator=(const copy_tracker
& rhs
)
266 if (rhs
.throw_on_copy_
)
267 assignment_operator::throw_on(assignment_operator::count() + 1);
268 assignment_operator::mark_call();
273 { destructor::mark_call(); }
276 id() const { return id_
; }
280 const bool throw_on_copy_
;
286 copy_constructor::reset();
287 assignment_operator::reset();
291 // for backwards-compatibility
294 { return copy_constructor::count(); }
296 // for backwards-compatibility
299 { return destructor::count(); }
306 operator==(const copy_tracker
& lhs
, const copy_tracker
& rhs
)
307 { return lhs
.id() == rhs
.id(); }
308 } // namespace __gnu_cxx_test
312 template<class _CharT
>
315 // char_traits specialization
317 struct char_traits
<__gnu_cxx_test::pod_char
>
319 typedef __gnu_cxx_test::pod_char char_type
;
320 typedef __gnu_cxx_test::pod_int int_type
;
321 typedef long pos_type
;
322 typedef unsigned long off_type
;
323 typedef __gnu_cxx_test::state state_type
;
326 assign(char_type
& __c1
, const char_type
& __c2
);
329 eq(const char_type
& __c1
, const char_type
& __c2
);
332 lt(const char_type
& __c1
, const char_type
& __c2
);
335 compare(const char_type
* __s1
, const char_type
* __s2
, size_t __n
);
338 length(const char_type
* __s
);
340 static const char_type
*
341 find(const char_type
* __s
, size_t __n
, const char_type
& __a
);
344 move(char_type
* __s1
, const char_type
* __s2
, size_t __n
);
347 copy(char_type
* __s1
, const char_type
* __s2
, size_t __n
);
350 assign(char_type
* __s
, size_t __n
, char_type __a
);
353 to_char_type(const int_type
& __c
);
356 to_int_type(const char_type
& __c
);
359 eq_int_type(const int_type
& __c1
, const int_type
& __c2
);
365 not_eof(const int_type
& __c
);
369 #endif // _GLIBCPP_TESTSUITE_HOOKS_H