From 9448eea5279763c47af807c842f4b12adfc8b4c6 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Wed, 10 Jun 2015 06:07:33 -0400 Subject: [PATCH 11/16] Add hash-set-tests.c Jeff approved an earlier version of this (as unittests/test-hash-set.c): https://gcc.gnu.org/ml/gcc-patches/2015-10/msg03300.html > OK if/when prereqs are approved. Minor twiddling if we end up > moving it elsewhere or standardizing/reducing header files is > pre-approved. This version moves the tests to gcc/hash-set-tests.c and updates them to the new style. gcc/ChangeLog: * hash-set-tests.c: New file. --- gcc/hash-set-tests.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 gcc/hash-set-tests.c diff --git a/gcc/hash-set-tests.c b/gcc/hash-set-tests.c new file mode 100644 index 0000000..cdca42a --- /dev/null +++ b/gcc/hash-set-tests.c @@ -0,0 +1,64 @@ +/* Unit tests for hash-set.h. + Copyright (C) 2015-2016 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with GCC; see the file COPYING3. If not see +. */ + +#include "config.h" +#include "system.h" +#include "coretypes.h" +#include "tm.h" +#include "opts.h" +#include "signop.h" +#include "hash-set.h" +#include "selftest.h" + +#if CHECKING_P + +static void +test_set_of_strings () +{ + hash_set s; + ASSERT_EQ (0, s.elements ()); + + const char *red = "red"; + const char *green = "green"; + const char *blue = "blue"; + + ASSERT_EQ (false, s.contains (red)); + + /* Populate the hash_set. */ + ASSERT_EQ (false, s.add (red)); + ASSERT_EQ (false, s.add (green)); + ASSERT_EQ (false, s.add (blue)); + + /* Verify that the values are now within the set. */ + ASSERT_EQ (true, s.contains (red)); + ASSERT_EQ (true, s.contains (green)); + ASSERT_EQ (true, s.contains (blue)); +} + +namespace selftest { + +void +hash_set_tests_c_tests () +{ + test_set_of_strings (); +} + +} // namespace selftest + +#endif /* #if CHECKING_P */ -- 1.8.5.3