pr88074.c: Require c99_runtime.
[official-gcc.git] / gcc / hash-set-tests.c
blobf75d41aed39d26dd223445774a52cc0b6854eea8
1 /* Unit tests for hash-set.h.
2 Copyright (C) 2015-2019 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "opts.h"
25 #include "hash-set.h"
26 #include "selftest.h"
28 #if CHECKING_P
30 namespace selftest {
32 /* Construct a hash_set <const char *> and verify that various operations
33 work correctly. */
35 static void
36 test_set_of_strings ()
38 hash_set <const char *> s;
39 ASSERT_EQ (0, s.elements ());
41 const char *red = "red";
42 const char *green = "green";
43 const char *blue = "blue";
45 ASSERT_EQ (false, s.contains (red));
47 /* Populate the hash_set. */
48 ASSERT_EQ (false, s.add (red));
49 ASSERT_EQ (false, s.add (green));
50 ASSERT_EQ (false, s.add (blue));
51 ASSERT_EQ (true, s.add (green));
53 /* Verify that the values are now within the set. */
54 ASSERT_EQ (true, s.contains (red));
55 ASSERT_EQ (true, s.contains (green));
56 ASSERT_EQ (true, s.contains (blue));
57 ASSERT_EQ (3, s.elements ());
59 /* Test removal. */
60 s.remove (red);
61 ASSERT_EQ (false, s.contains (red));
62 ASSERT_EQ (true, s.contains (green));
63 ASSERT_EQ (true, s.contains (blue));
64 ASSERT_EQ (2, s.elements ());
66 s.remove (red);
67 ASSERT_EQ (false, s.contains (red));
68 ASSERT_EQ (true, s.contains (green));
69 ASSERT_EQ (true, s.contains (blue));
70 ASSERT_EQ (2, s.elements ());
73 /* Run all of the selftests within this file. */
75 void
76 hash_set_tests_c_tests ()
78 test_set_of_strings ();
81 } // namespace selftest
83 #endif /* #if CHECKING_P */