2 // Utility subroutines for the C++ library testsuite.
4 // Copyright (C) 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 #include <testsuite_hooks.h>
33 #ifdef _GLIBCPP_MEM_LIMITS
36 #include <sys/resource.h>
44 namespace __gnu_cxx_test
46 #ifdef _GLIBCPP_MEM_LIMITS
48 set_memory_limits(float size)
51 // Cater to the absence of rlim_t.
52 __typeof__ (r.rlim_cur) limit = (__typeof__ (r.rlim_cur))(size * 1048576);
54 // Heap size, seems to be common.
55 #if _GLIBCPP_HAVE_MEMLIMIT_DATA
56 getrlimit(RLIMIT_DATA, &r);
58 setrlimit(RLIMIT_DATA, &r);
62 #if _GLIBCPP_HAVE_MEMLIMIT_RSS
63 getrlimit(RLIMIT_RSS, &r);
65 setrlimit(RLIMIT_RSS, &r);
68 // Mapped memory (brk + mmap).
69 #if _GLIBCPP_HAVE_MEMLIMIT_VMEM
70 getrlimit(RLIMIT_VMEM, &r);
72 setrlimit(RLIMIT_VMEM, &r);
76 #if _GLIBCPP_HAVE_MEMLIMIT_AS
77 getrlimit(RLIMIT_AS, &r);
79 setrlimit(RLIMIT_AS, &r);
85 set_memory_limits(float) { }
89 class locale_data : public std::runtime_error
93 locale_data(const std::string& __arg) : runtime_error(__arg) { }
96 class environment_variable: public std::runtime_error
100 environment_variable(const std::string& __arg) : runtime_error(__arg) { }
103 class not_found : public std::runtime_error
107 not_found(const std::string& __arg) : runtime_error(__arg) { }
111 run_tests_wrapped_locale(const char* name, const func_callback& l)
116 // Set the global locale.
117 locale loc_name(name);
118 locale orig = locale::global(loc_name);
120 const char* res = setlocale(LC_ALL, name);
123 string preLC_ALL = res;
124 for (func_callback::const_iterator i = l.begin(); i != l.end(); ++i)
126 string postLC_ALL= setlocale(LC_ALL, NULL);
127 VERIFY( preLC_ALL == postLC_ALL );
130 throw environment_variable(string("LC_ALL for") + string(name));
134 run_tests_wrapped_env(const char* name, const char* env,
135 const func_callback& l)
140 #ifdef _GLIBCPP_HAVE_SETENV
141 // Set the global locale.
142 locale loc_name(name);
143 locale orig = locale::global(loc_name);
145 // Set environment variable env to value in name.
146 const char* oldENV = getenv(env);
147 if (!setenv(env, name, 1))
149 for (func_callback::const_iterator i = l.begin(); i != l.end(); ++i)
151 setenv(env, oldENV ? oldENV : "", 1);
154 throw environment_variable(string(env) + string(" to ") + string(name));
156 throw not_found("setenv");
160 counter::size_type counter::count = 0;
161 unsigned int copy_constructor::count_ = 0;
162 unsigned int copy_constructor::throw_on_ = 0;
163 unsigned int assignment_operator::count_ = 0;
164 unsigned int assignment_operator::throw_on_ = 0;
165 unsigned int destructor::_M_count = 0;
166 int copy_tracker::next_id_ = 0;
167 }; // namespace __cxx_test