]> gcc.gnu.org Git - gcc.git/commitdiff
Don't include internal header in libstdc++ tests
authorJonathan Wakely <jwakely@redhat.com>
Mon, 18 Apr 2016 15:44:16 +0000 (16:44 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Mon, 18 Apr 2016 15:44:16 +0000 (16:44 +0100)
* testsuite/experimental/type_erased_allocator/1.cc: Don't include
internal header.
* testsuite/experimental/type_erased_allocator/1_neg.cc: Likewise.
* testsuite/experimental/type_erased_allocator/2.cc: Likewise.
* testsuite/experimental/type_erased_allocator/uses_allocator.cc:
Likewise. Add licence and change to compile-only test.

From-SVN: r235153

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/experimental/type_erased_allocator/1.cc
libstdc++-v3/testsuite/experimental/type_erased_allocator/1_neg.cc
libstdc++-v3/testsuite/experimental/type_erased_allocator/2.cc
libstdc++-v3/testsuite/experimental/type_erased_allocator/uses_allocator.cc

index 470818d0d29533a45effb8ae854de73056b7cfba..076f18bfc0a7df10096e986a260a6b230f09eba5 100644 (file)
@@ -1,5 +1,12 @@
 2016-04-18  Jonathan Wakely  <jwakely@redhat.com>
 
+       * testsuite/experimental/type_erased_allocator/1.cc: Don't include
+       internal header.
+       * testsuite/experimental/type_erased_allocator/1_neg.cc: Likewise.
+       * testsuite/experimental/type_erased_allocator/2.cc: Likewise.
+       * testsuite/experimental/type_erased_allocator/uses_allocator.cc:
+       Likewise. Add licence and change to compile-only test.
+
        * include/bits/locale_facets.h (ctype::do_narrow): Add attribute to
        unused parameter.
        * include/bits/regex_automaton.h (_NFA::_M_insert_alt): Likewise.
index c000e696815cbd7edbdacbaf2526c6c40f09d47b..924d728aa4ed7b74d580d1984afd514168acf852 100644 (file)
@@ -20,7 +20,6 @@
 #include <memory>
 #include <experimental/memory_resource>
 #include <vector>
-#include <bits/uses_allocator.h>
 #include <testsuite_hooks.h>
 #include <testsuite_allocator.h>
 
index 55c446eacfc552081b9f8971f5ee783e5fb67a19..ce45dbf7c2f390360abb26d4f5264686d3b612bb 100644 (file)
@@ -19,7 +19,6 @@
 // <http://www.gnu.org/licenses/>.
 
 #include <experimental/memory_resource>
-#include <bits/uses_allocator.h>
 #include <testsuite_hooks.h>
 #include <testsuite_allocator.h>
 
index fb927dc27afb3991b2ef61026be6a54f7673c132..8f7d0b5d24b03ef0df4cf5899fd97c8f3361e046 100644 (file)
@@ -20,7 +20,6 @@
 #include <memory>
 #include <experimental/memory_resource>
 #include <experimental/utility>
-#include <bits/uses_allocator.h>
 #include <testsuite_hooks.h>
 #include <testsuite_allocator.h>
 
index fc8acf16dcdea5adc69a2031a37d8de8f7973816..1d4ba1e09bb98147f759ccf62cbfccaec703af82 100644 (file)
@@ -1,7 +1,26 @@
-#include <bits/uses_allocator.h>
+// Copyright (C) 2015-2016 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library 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.
+
+// This library 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 this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++14" }
+// { dg-do compile }
+
 #include <vector>
-#include <experimental/utility>
 #include <memory>
+#include <experimental/utility>
 
 using std::vector;
 using std::allocator;
@@ -11,12 +30,5 @@ struct A {
   using allocator_type = std::experimental::erased_type;
 };
 
-void test01() {
-    static_assert(uses_allocator<vector<int>, allocator<int>>());
-    static_assert(uses_allocator<A, allocator<A>>());
-}
-
-int main() {
-  test01();
-  return 0;
-}
+static_assert(uses_allocator<vector<int>, allocator<int>>(), "");
+static_assert(uses_allocator<A, allocator<A>>(), "");
This page took 0.072253 seconds and 5 git commands to generate.