diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2002-05-28 23:15:18 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2002-05-28 23:15:18 +0000 |
commit | 8ea08b7d7bd834782e403121564b9eb2ee6e15a0 (patch) | |
tree | a740434efe1293cba35f10ada277aeede1f442b7 /libstdc++-v3/testsuite/testsuite_hooks.cc | |
parent | 64de6c0a5fa388bde4676762adc516001fb462ef (diff) | |
download | gcc-8ea08b7d7bd834782e403121564b9eb2ee6e15a0.tar.gz |
Makefile.am (noinst_LIBRARIES): New target.
2002-05-28 Phil Edwards <pme@gcc.gnu.org>
* testsuite/Makefile.am (noinst_LIBRARIES): New target. Pull in
CXX/INCLUDES.
* testsuite/Makefile.in: Regenerate.
* testsuite/testsuite_hooks.h (gnu_copy_tracker): Move from
list_modifiers.cc and rename from 'T'. Move code bodies...
* testsuite/testsuite_hooks.cc: ...to here. New file.
* testsuite/23_containers/list_modifiers.cc: Move 'T' class out.
* testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3_target_compile):
Add libv3test.a to link options.
From-SVN: r53977
Diffstat (limited to 'libstdc++-v3/testsuite/testsuite_hooks.cc')
-rw-r--r-- | libstdc++-v3/testsuite/testsuite_hooks.cc | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/testsuite_hooks.cc b/libstdc++-v3/testsuite/testsuite_hooks.cc new file mode 100644 index 00000000000..53bd753b1a8 --- /dev/null +++ b/libstdc++-v3/testsuite/testsuite_hooks.cc @@ -0,0 +1,77 @@ +// Utility subroutines for the C++ library testsuite. +// +// Copyright (C) 2002 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 2, or (at your option) +// any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING. If not, write to the Free +// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, +// USA. +// +// As a special exception, you may use this file as part of a free software +// library without restriction. Specifically, if other files instantiate +// templates or use macros or inline functions from this file, or you compile +// this file and link it with other files to produce an executable, this +// file does not by itself cause the resulting executable to be covered by +// the GNU General Public License. This exception does not however +// invalidate any other reasons why the executable file might be covered by +// the GNU General Public License. + +#include <testsuite_hooks.h> + +#ifdef _GLIBCPP_MEM_LIMITS +#include <sys/resource.h> +#include <unistd.h> + +void +__set_testsuite_memlimit(float __size) +{ + struct rlimit r; + rlim_t limit = (rlim_t)(__size * 1048576); + + // Heap size, seems to be common. +#if _GLIBCPP_HAVE_MEMLIMIT_DATA + getrlimit(RLIMIT_DATA, &r); + r.rlim_cur = limit; + setrlimit(RLIMIT_DATA, &r); +#endif + + // Resident set size. +#if _GLIBCPP_HAVE_MEMLIMIT_RSS + getrlimit(RLIMIT_RSS, &r); + r.rlim_cur = limit; + setrlimit(RLIMIT_RSS, &r); +#endif + + // Mapped memory (brk + mmap). +#if _GLIBCPP_HAVE_MEMLIMIT_VMEM + getrlimit(RLIMIT_VMEM, &r); + r.rlim_cur = limit; + setrlimit(RLIMIT_VMEM, &r); +#endif + + // Virtual memory. +#if _GLIBCPP_HAVE_MEMLIMIT_AS + getrlimit(RLIMIT_AS, &r); + r.rlim_cur = limit; + setrlimit(RLIMIT_AS, &r); +#endif +} +#endif /* _GLIBCPP_MEM_LIMITS */ + + +gnu_counting_struct::size_type gnu_counting_struct::count = 0; + +int gnu_copy_tracker::itsCopyCount = 0; +int gnu_copy_tracker::itsDtorCount = 0; + |