From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 172433857C46; Wed, 14 Oct 2020 15:17:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 172433857C46 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r11-3881] libstdc++: Fix tests that fail with old std::string ABI X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: a121715bcab6e8980768d142b9781c45821130ac X-Git-Newrev: 2b9c09a78b048328e41419e6b941cf0207bfd6bc Message-Id: <20201014151709.172433857C46@sourceware.org> Date: Wed, 14 Oct 2020 15:17:09 +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: Wed, 14 Oct 2020 15:17:09 -0000 https://gcc.gnu.org/g:2b9c09a78b048328e41419e6b941cf0207bfd6bc commit r11-3881-g2b9c09a78b048328e41419e6b941cf0207bfd6bc Author: Jonathan Wakely Date: Wed Oct 14 16:15:49 2020 +0100 libstdc++: Fix tests that fail with old std::string ABI These two tests have started to fail with the old std::string ABI. The scan-assembler-not checks fail because they match debug info, not code. Adding -g0 to the test flags fixes them. libstdc++-v3/ChangeLog: * testsuite/21_strings/basic_string/modifiers/assign/char/move_assign_optim.cc: Do not generate debug info. * testsuite/21_strings/basic_string/modifiers/assign/wchar_t/move_assign_optim.cc: Likewise. Diff: --- .../21_strings/basic_string/modifiers/assign/char/move_assign_optim.cc | 2 +- .../basic_string/modifiers/assign/wchar_t/move_assign_optim.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/move_assign_optim.cc b/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/move_assign_optim.cc index 85584d68e47..9546ca68e4d 100644 --- a/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/move_assign_optim.cc +++ b/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/move_assign_optim.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-O1" } +// { dg-options "-O1 -g0" } // { dg-do compile { target c++11 } } // { dg-final { scan-assembler-not "__throw_length_error" } } // { dg-final { scan-assembler-not "__throw_bad_alloc" } } diff --git a/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/move_assign_optim.cc b/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/move_assign_optim.cc index 9f0a86f3dff..752856b800d 100644 --- a/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/move_assign_optim.cc +++ b/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/move_assign_optim.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-O1" } +// { dg-options "-O1 -g0" } // { dg-do compile { target c++11 } } // { dg-final { scan-assembler-not "__throw_length_error" } } // { dg-final { scan-assembler-not "__throw_bad_alloc" } }