On Fri, Sep 30, 2022 at 06:47:07PM +0100, Jonathan Wakely via Gcc-patches wrote: > On Fri, 30 Sept 2022 at 17:26, Jonathan Wakely wrote: > > > > On Fri, 30 Sept 2022 at 17:04, Torbjörn SVENSSON > > <torbjorn.svens...@foss.st.com> wrote: > > > > > > libstdc++-v3/testsuite: > > > > > > * 20_util/bind/ref_neg.cc: Prune Windows paths too. > > > > Please CC the libstdc++ for libstdc++ patches. > > > > OK for trunk, thanks. > > I'm seeing errors now on x86_64-linux: > > ERROR: 20_util/bind/ref_neg.cc: unknown dg option: /\\ for " > dg-prune-output 53 "[/\\](functional|bits/invoke.h):" " > > ERROR: 20_util/bind/ref_neg.cc: unknown dg option: /\\ for " > dg-prune-output 53 "[/\\](functional|bits/invoke.h):" "
Bet it should be // { dg-prune-output "\[/\\](functional|bits\[/\\]invoke.h):" } or so. Completely untested. > > > Co-Authored-By: Yvan ROUX <yvan.r...@foss.st.com> > > > Signed-off-by: Torbjörn SVENSSON <torbjorn.svens...@foss.st.com> > > > --- > > > libstdc++-v3/testsuite/20_util/bind/ref_neg.cc | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc > > > b/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc > > > index e779d2f20bd..1e9f3e7fece 100644 > > > --- a/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc > > > +++ b/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc > > > @@ -50,7 +50,7 @@ void test02() > > > > > > // Ignore the reasons for deduction/substitution failure in the headers. > > > // Arrange for the match to work on installed trees as well as build > > > trees. > > > -// { dg-prune-output "/(functional|bits/invoke.h):" } > > > +// { dg-prune-output "[/\\](functional|bits/invoke.h):" } > > > > > > int main() > > > { > > > -- > > > 2.25.1 > > > Jakub