From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id EC9623857703; Thu, 7 Sep 2023 16:41:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EC9623857703 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1694104912; bh=HOnBz5Cw8e3mcoEkFVHg+VbU8rpt1hdF6vZ2iyYPh50=; h=From:To:Subject:Date:From; b=emO9knxohdlMbNVRPn3JTwAzHWc2R47/AZaLxU6n/+TFgnCDtXVq7PsvemmsJVL0m SXJDN/X1AnNUh3Umto0t85epDqPsdtn4OfFpOzeAlkfj+TRbx6+tHOeAj3lb7lCo2R MrmA22Jdj21thgUbVTQzkaBn5zk2qDOPa/cQWXnU= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r14-3788] libstdc++: Simplify dejagnu target selector X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: bd3d7e1146bd0207cb215bc3cd3b1076e6ec5257 X-Git-Newrev: 3b1b24fb2a5a733656ba3ac983e6f7bd0ab307d0 Message-Id: <20230907164152.EC9623857703@sourceware.org> Date: Thu, 7 Sep 2023 16:41:52 +0000 (GMT) List-Id: https://gcc.gnu.org/g:3b1b24fb2a5a733656ba3ac983e6f7bd0ab307d0 commit r14-3788-g3b1b24fb2a5a733656ba3ac983e6f7bd0ab307d0 Author: Jonathan Wakely Date: Thu Sep 7 14:20:56 2023 +0100 libstdc++: Simplify dejagnu target selector A target selector allows multiple target triplets, it's not necessary to use the || operator in a logical expression. libstdc++-v3/ChangeLog: * testsuite/27_io/filesystem/path/concat/94063.cc: Simplify dg-do target selector. Diff: --- libstdc++-v3/testsuite/27_io/filesystem/path/concat/94063.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/testsuite/27_io/filesystem/path/concat/94063.cc b/libstdc++-v3/testsuite/27_io/filesystem/path/concat/94063.cc index 50f34860550f..a6894fc02548 100644 --- a/libstdc++-v3/testsuite/27_io/filesystem/path/concat/94063.cc +++ b/libstdc++-v3/testsuite/27_io/filesystem/path/concat/94063.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // . -// { dg-do run { target { *-*-*mingw* || *-*-cygwin } } } +// { dg-do run { target { *-*-*mingw* *-*-cygwin } } } // { dg-require-effective-target c++17 } #include