* java/util/Properties.java (load): Only skip line if the first
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / allocator_members.cc
blob8c40ab760f7fc051a2bb7707f0cf31a9f33c3e8b
1 // 2001-06-14 Benjamin Kosnik <bkoz@redhat.com>
3 // Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
21 // 20.4.1.1 allocator members
23 #include <memory>
24 #include <stdexcept>
25 #include <cstdlib>
26 #include <testsuite_hooks.h>
28 struct gnu { };
30 bool check_new = false;
31 bool check_delete = false;
33 void*
34 operator new(std::size_t n) throw(std::bad_alloc)
36 check_new = true;
37 return std::malloc(n);
40 void operator delete(void *v) throw()
42 check_delete = true;
43 return std::free(v);
46 void test01()
48 bool test = true;
49 std::allocator<gnu> obj;
51 // XXX These should work for various size allocation and
52 // deallocations. Currently, they only work as expected for sizes >
53 // _MAX_BYTES as defined in stl_alloc.h, which happes to be 128.
54 gnu* pobj = obj.allocate(256);
55 VERIFY( check_new );
57 obj.deallocate(pobj, 256);
58 VERIFY( check_delete );
61 // libstdc++/8230
62 void test02()
64 bool test = true;
65 try
67 std::allocator<int> alloc;
68 const std::allocator<int>::size_type n = alloc.max_size();
69 int* p = alloc.allocate(n + 1);
70 p[n] = 2002;
72 catch(const std::bad_alloc& e)
74 // Allowed.
75 test = true;
77 catch(...)
79 test = false;
81 VERIFY( test );
84 int main()
86 test01();
87 test02();
88 return 0;