]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/ext/pb_ds/regression/list_update_set_rand.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / pb_ds / regression / list_update_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 5
4569a895
AT
6// -*- C++ -*-
7
8d9254fc 8// Copyright (C) 2005-2020 Free Software Foundation, Inc.
4569a895
AT
9//
10// This file is part of the GNU ISO C++ Library. This library is free
11// software; you can redistribute it and/or modify it under the terms
12// of the GNU General Public License as published by the Free Software
748086b7 13// Foundation; either version 3, or (at your option) any later
4569a895
AT
14// version.
15
16// This library is distributed in the hope that it will be useful, but
17// WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19// General Public License for more details.
20
21// You should have received a copy of the GNU General Public License
748086b7
JJ
22// along with this library; see the file COPYING3. If not see
23// <http://www.gnu.org/licenses/>.
24
4569a895
AT
25
26// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
27
28// Permission to use, copy, modify, sell, and distribute this software
29// is hereby granted without fee, provided that the above copyright
30// notice appears in all copies, and that both that copyright notice
31// and this permission notice appear in supporting documentation. None
32// of the above authors, nor IBM Haifa Research Laboratories, make any
33// representation about the suitability of this software for any
34// purpose. It is provided "as is" without express or implied
35// warranty.
36
37/**
38 * @file lu_no_data_map_rand_regression_test.cpp
39 * Contains a random-operation test for maps and sets.
40 */
41
cb2168c9 42#define PB_DS_REGRESSION
eb0619fe 43
4569a895 44#include <regression/rand/assoc/rand_regression_test.hpp>
2e3f9c21 45#include <regression/common_type.hpp>
4569a895
AT
46
47int
48main(int argc, char* a_p_argv[])
49{
5e11f978 50 using namespace __gnu_pbds::test;
4569a895
AT
51 typedef lu_set_tl_t map_tl_t;
52
578089db 53 return rand_regression_test(50, 10,
4569a895
AT
54 "lu_no_data_map_rand_regression_test",
55 map_tl_t());
56}
57