diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2023-09-07 14:20:56 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2023-09-07 17:05:54 +0100 |
commit | 3b1b24fb2a5a733656ba3ac983e6f7bd0ab307d0 (patch) | |
tree | 25899df1cdfc3377fcbb15978e81aa65219a4c14 | |
parent | bd3d7e1146bd0207cb215bc3cd3b1076e6ec5257 (diff) | |
download | gcc-3b1b24fb2a5a733656ba3ac983e6f7bd0ab307d0.zip gcc-3b1b24fb2a5a733656ba3ac983e6f7bd0ab307d0.tar.gz gcc-3b1b24fb2a5a733656ba3ac983e6f7bd0ab307d0.tar.bz2 |
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.
-rw-r--r-- | libstdc++-v3/testsuite/27_io/filesystem/path/concat/94063.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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 50f3486..a6894fc 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 // <http://www.gnu.org/licenses/>. -// { dg-do run { target { *-*-*mingw* || *-*-cygwin } } } +// { dg-do run { target { *-*-*mingw* *-*-cygwin } } } // { dg-require-effective-target c++17 } #include <filesystem> |