public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
From: William Schmidt <wschmidt@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org
Subject: [gcc(refs/users/wschmidt/heads/builtins3)] libstdc++: Use c++NN_only effective target to tests
Date: Tue, 18 Aug 2020 18:20:08 +0000 (GMT)	[thread overview]
Message-ID: <20200818182008.A48A4393BC26@sourceware.org> (raw)

https://gcc.gnu.org/g:566f42273467817a31a7a1ae058ba759837eec22

commit 566f42273467817a31a7a1ae058ba759837eec22
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Jul 31 19:58:02 2020 +0100

    libstdc++: Use c++NN_only effective target to tests
    
    Some tests really are only intended for a specific -std mode, so add a
    target selector to make that explicit.
    
    Also reorder the dg-do directives to come after the dg-options ones, so
    that the target selector in the dg-do directive is applied after the
    dg-options that sets the -std option.
    
    libstdc++-v3/ChangeLog:
    
            * testsuite/20_util/reference_wrapper/83427.cc: Adjust
            effective-target to specific language mode only.
            * testsuite/24_iterators/headers/iterator/range_access_c++11.cc:
            Likewise.
            * testsuite/24_iterators/headers/iterator/range_access_c++14.cc:
            Likewise.
            * testsuite/24_iterators/headers/iterator/synopsis_c++11.cc:
            Likewise.
            * testsuite/24_iterators/headers/iterator/synopsis_c++14.cc:
            Likewise.
            * testsuite/26_numerics/valarray/69116.cc:
            Likewise.
            * testsuite/30_threads/headers/condition_variable/std_c++0x_neg.cc:
            Remove whitespace at end of file.
            * testsuite/30_threads/headers/future/std_c++0x_neg.cc:
            Likewise.

Diff:
---
 libstdc++-v3/testsuite/20_util/reference_wrapper/83427.cc              | 2 +-
 .../testsuite/24_iterators/headers/iterator/range_access_c++11.cc      | 2 +-
 .../testsuite/24_iterators/headers/iterator/range_access_c++14.cc      | 2 +-
 libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++11.cc | 2 +-
 libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++14.cc | 2 +-
 libstdc++-v3/testsuite/26_numerics/valarray/69116.cc                   | 2 +-
 .../testsuite/30_threads/headers/condition_variable/std_c++0x_neg.cc   | 3 ---
 libstdc++-v3/testsuite/30_threads/headers/future/std_c++0x_neg.cc      | 3 ---
 8 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/libstdc++-v3/testsuite/20_util/reference_wrapper/83427.cc b/libstdc++-v3/testsuite/20_util/reference_wrapper/83427.cc
index 3dbd0917621..613da848d72 100644
--- a/libstdc++-v3/testsuite/20_util/reference_wrapper/83427.cc
+++ b/libstdc++-v3/testsuite/20_util/reference_wrapper/83427.cc
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 
 // { dg-options "-std=gnu++17" }
-// { dg-do compile { target c++17 } }
+// { dg-do compile { target c++17_only } }
 
 #include <functional>
 
diff --git a/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++11.cc b/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++11.cc
index aed0ed45406..099288716e3 100644
--- a/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++11.cc
+++ b/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++11.cc
@@ -1,5 +1,5 @@
 // { dg-options "-std=gnu++11" }
-// { dg-do compile }
+// { dg-do compile { target c++11_only } }
 
 // Copyright (C) 2010-2020 Free Software Foundation, Inc.
 //
diff --git a/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++14.cc b/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++14.cc
index 2523dc3d696..f5923386b79 100644
--- a/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++14.cc
+++ b/libstdc++-v3/testsuite/24_iterators/headers/iterator/range_access_c++14.cc
@@ -1,5 +1,5 @@
 // { dg-options "-std=gnu++14" }
-// { dg-do compile }
+// { dg-do compile { target c++14_only } }
 
 // Copyright (C) 2016-2020 Free Software Foundation, Inc.
 //
diff --git a/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++11.cc b/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++11.cc
index da7821e20ee..1fd115abd87 100644
--- a/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++11.cc
+++ b/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++11.cc
@@ -1,5 +1,5 @@
 // { dg-options "-std=gnu++11" }
-// { dg-do compile }
+// { dg-do compile { target c++11_only } }
 // { dg-require-normal-namespace "" }
 
 // Copyright (C) 2016-2020 Free Software Foundation, Inc.
diff --git a/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++14.cc b/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++14.cc
index c2dd942f6e7..f296c852e76 100644
--- a/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++14.cc
+++ b/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++14.cc
@@ -1,5 +1,5 @@
 // { dg-options "-std=gnu++14" }
-// { dg-do compile }
+// { dg-do compile { target c++14_only } }
 // { dg-require-normal-namespace "" }
 
 // Copyright (C) 2016-2020 Free Software Foundation, Inc.
diff --git a/libstdc++-v3/testsuite/26_numerics/valarray/69116.cc b/libstdc++-v3/testsuite/26_numerics/valarray/69116.cc
index 223dec3d11f..579c01cb37d 100644
--- a/libstdc++-v3/testsuite/26_numerics/valarray/69116.cc
+++ b/libstdc++-v3/testsuite/26_numerics/valarray/69116.cc
@@ -15,8 +15,8 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-do compile }
 // { dg-options "-std=gnu++98" }
+// { dg-do compile { target c++98_only } }
 
 // libstdc++/69116
 
diff --git a/libstdc++-v3/testsuite/30_threads/headers/condition_variable/std_c++0x_neg.cc b/libstdc++-v3/testsuite/30_threads/headers/condition_variable/std_c++0x_neg.cc
index 0b615988a77..45a0c74a9f7 100644
--- a/libstdc++-v3/testsuite/30_threads/headers/condition_variable/std_c++0x_neg.cc
+++ b/libstdc++-v3/testsuite/30_threads/headers/condition_variable/std_c++0x_neg.cc
@@ -21,6 +21,3 @@
 #include <condition_variable>
 
 // { dg-error "ISO C.. 2011" "" { target *-*-* } 32 }
-
-
-
diff --git a/libstdc++-v3/testsuite/30_threads/headers/future/std_c++0x_neg.cc b/libstdc++-v3/testsuite/30_threads/headers/future/std_c++0x_neg.cc
index 22463f4bc55..c67214e4b21 100644
--- a/libstdc++-v3/testsuite/30_threads/headers/future/std_c++0x_neg.cc
+++ b/libstdc++-v3/testsuite/30_threads/headers/future/std_c++0x_neg.cc
@@ -21,6 +21,3 @@
 #include <future>
 
 // { dg-error "ISO C.. 2011" "" { target *-*-* } 32 }
-
-
-


                 reply	other threads:[~2020-08-18 18:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200818182008.A48A4393BC26@sourceware.org \
    --to=wschmidt@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    --cc=libstdc++-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).