From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1725) id 504C53894C1A; Tue, 18 Aug 2020 18:19:48 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 504C53894C1A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1597774788; bh=8I62MQ2VrSYNNCZSeYutvCHmaYYoS7C/rXGRXRv85Nw=; h=From:To:Subject:Date:From; b=MaU43MdG9RhAKgqyVzO6UOlp44mvVXmsUhFoig9/L9OgW2efrOWBc5nzUeRmyZsRG 1zBRG4Fv3g3hCgjQnZE6LcZanTBwpYMNB4nEj6qv8ppWRhg9j0eYNYwkXuIubYPgcc Kr+xMly14AhKSA2d25CQE3qxBDZFDY2qNEog5zVA= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: William Schmidt To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc(refs/users/wschmidt/heads/builtins3)] libstdc++: Remove accidental -std=gnu++17 from test X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/users/wschmidt/heads/builtins3 X-Git-Oldrev: 8e2592a88821511aa45c3325246f3b08a88fa063 X-Git-Newrev: ed0b4bb29a50d6be0e4b6411b3cc9f22967f1313 Message-Id: <20200818181948.504C53894C1A@sourceware.org> Date: Tue, 18 Aug 2020 18:19:48 +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: Tue, 18 Aug 2020 18:19:48 -0000 https://gcc.gnu.org/g:ed0b4bb29a50d6be0e4b6411b3cc9f22967f1313 commit ed0b4bb29a50d6be0e4b6411b3cc9f22967f1313 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. 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 "" }