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.
This commit is contained in:
Jonathan Wakely 2023-09-07 14:20:56 +01:00
parent bd3d7e1146
commit 3b1b24fb2a

View file

@ -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>