From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id B2A6E383F878; Mon, 11 Jan 2021 15:04:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B2A6E383F878 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 r10-9248] libstdc++: Remove accidental -std=gnu++17 from test X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/releases/gcc-10 X-Git-Oldrev: 69894ce172412996c10c89838717980ede7c9003 X-Git-Newrev: f0e81957b2b5e0f2b832adf64d2c70fc601c3466 Message-Id: <20210111150430.B2A6E383F878@sourceware.org> Date: Mon, 11 Jan 2021 15:04:30 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2021 15:04:30 -0000 https://gcc.gnu.org/g:f0e81957b2b5e0f2b832adf64d2c70fc601c3466 commit r10-9248-gf0e81957b2b5e0f2b832adf64d2c70fc601c3466 Author: Jonathan Wakely Date: Fri Jul 31 18:02:10 2020 +0100 libstdc++: Remove accidental -std=gnu++17 from test This was probably copied from a std::filesystem test and the -std option wasn't removed. libstdc++-v3/ChangeLog: * testsuite/experimental/filesystem/filesystem_error/cons.cc: Remove -std=gnu++17 option. (cherry picked from commit ed0b4bb29a50d6be0e4b6411b3cc9f22967f1313) Diff: --- libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc b/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc index 19dcc2a19bf..0c7420c1461 100644 --- a/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc +++ b/libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-std=gnu++17 -lstdc++fs" } +// { dg-options "-lstdc++fs" } // { dg-do run { target c++11 } } // { dg-require-filesystem-ts "" }