]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/ext/pb_ds/regression/hash_set_rand.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / pb_ds / regression / hash_set_rand.cc
CommitLineData
c4296692 1// __gnu_pbds::test::basic_type has ambiguous string conversions in C++17
7b936140 2// { dg-do run { target { ! c++17 } } }
cb2168c9 3// { dg-require-time "" }
49ba2588 4// { dg-require-cstdint "" }
cb2168c9
BK
5// This can take long on simulators, timing out the test.
6// { dg-options "-DITERATIONS=5" { target simulator } }
7// { dg-timeout-factor 2.0 }
8
4569a895
AT
9// -*- C++ -*-
10
99dee823 11// Copyright (C) 2005-2021 Free Software Foundation, Inc.
4569a895
AT
12//
13// This file is part of the GNU ISO C++ Library. This library is free
14// software; you can redistribute it and/or modify it under the terms
15// of the GNU General Public License as published by the Free Software
748086b7 16// Foundation; either version 3, or (at your option) any later
4569a895
AT
17// version.
18
19// This library is distributed in the hope that it will be useful, but
20// WITHOUT ANY WARRANTY; without even the implied warranty of
21// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22// General Public License for more details.
23
24// You should have received a copy of the GNU General Public License
748086b7
JJ
25// along with this library; see the file COPYING3. If not see
26// <http://www.gnu.org/licenses/>.
4569a895 27
4569a895
AT
28
29// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
30
31// Permission to use, copy, modify, sell, and distribute this software
32// is hereby granted without fee, provided that the above copyright
33// notice appears in all copies, and that both that copyright notice
34// and this permission notice appear in supporting documentation. None
35// of the above authors, nor IBM Haifa Research Laboratories, make any
36// representation about the suitability of this software for any
37// purpose. It is provided "as is" without express or implied
38// warranty.
39
40/**
41 * @file hash_no_data_map_rand_regression_test.cpp
42 * Contains a random-operation test for maps and sets.
43 */
44
cb2168c9 45#define PB_DS_REGRESSION
eb0619fe 46
4569a895 47#include <regression/rand/assoc/rand_regression_test.hpp>
2e3f9c21 48#include <regression/common_type.hpp>
4569a895 49
ed445ba3 50#ifndef ITERATIONS
191e7a30
BK
51# ifdef _GLIBCXX_DEBUG
52# define ITERATIONS 100
53# else
54# define ITERATIONS 5000
ed445ba3 55#endif
191e7a30
BK
56#endif
57
ed445ba3 58#ifndef KEYS
191e7a30
BK
59# ifdef _GLIBCXX_DEBUG
60# define KEYS 200
61# else
62# define KEYS 10000
63# endif
ed445ba3 64#endif
191e7a30 65
4569a895
AT
66int
67main(int argc, char* a_p_argv[])
68{
5e11f978 69 using namespace __gnu_pbds::test;
4569a895
AT
70 typedef hash_set_tl_t map_tl_t;
71
ed445ba3 72 return rand_regression_test(ITERATIONS, KEYS,
4569a895
AT
73 "hash_no_data_map_rand_regression_test",
74 map_tl_t());
75}