1// 2003-03-01 gp dot bolton at computer dot org
2
3// Copyright (C) 2003, 2004, 2005, 2006, 2009 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 3, or (at your option)
9// any later version.
10
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.
15
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING3.  If not see
18// <http://www.gnu.org/licenses/>.
19
20
21#include <testsuite_performance.h>
22
23template<typename Container, int Iter>
24  void
25  do_loop()
26  {
27    Container obj;
28    const int iterations = 250000;
29    for (int i = 0; i < iterations; ++i)
30      obj[i] = i;
31  }
32
33int
34main()
35{
36#ifdef TEST_S1
37#define thread_type false
38#endif
39
40#ifdef TEST_T1
41#define thread_type true
42#endif
43
44  typedef __gnu_test::maps<int, thread_type>::type container_types;
45  typedef test_sequence<thread_type> test_type;
46  test_type test("create");
47  __gnu_cxx::typelist::apply(test, container_types());
48
49  return 0;
50}
51
52