diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2003-02-24 18:14:20 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-02-24 18:14:20 +0000 |
commit | 2e812a0a4109831740d0a30805f63994386be007 (patch) | |
tree | adce676498df8f34c5e4dec7f884504424b5c111 | |
parent | d99c7b11c5364af6b6353d0bf4c6c52aef21e759 (diff) | |
download | gcc-2e812a0a4109831740d0a30805f63994386be007.zip gcc-2e812a0a4109831740d0a30805f63994386be007.tar.gz gcc-2e812a0a4109831740d0a30805f63994386be007.tar.bz2 |
ios_base_storage.cc (main): Call set_memory_limits.
2003-02-24 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/27_io/ios_base_storage.cc (main): Call
set_memory_limits.
From-SVN: r63366
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/ios_base_storage.cc | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9081936..eb7a66d 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-02-24 Benjamin Kosnik <bkoz@redhat.com> + + * testsuite/27_io/ios_base_storage.cc (main): Call + set_memory_limits. + 2003-02-21 Jerry Quinn <jlquinn@optonline.net> * include/bits/locale_facets.tcc (_M_convert_float): Replace diff --git a/libstdc++-v3/testsuite/27_io/ios_base_storage.cc b/libstdc++-v3/testsuite/27_io/ios_base_storage.cc index a02eacb..a0c1746 100644 --- a/libstdc++-v3/testsuite/27_io/ios_base_storage.cc +++ b/libstdc++-v3/testsuite/27_io/ios_base_storage.cc @@ -1,6 +1,6 @@ // 2000-12-19 bkoz -// Copyright (C) 2000, 2002 Free Software Foundation +// Copyright (C) 2000, 2002, 2003 Free Software Foundation // // 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 @@ -93,6 +93,7 @@ void test02() int main(void) { + __gnu_cxx_test::set_memory_limits(); test01(); test02(); return 0; |