From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1033) id 536373858C74; Thu, 11 Aug 2022 16:33:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 536373858C74 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: David Edelsohn To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-2024] testcase: Fix AIX testsuite failures X-Act-Checkin: gcc X-Git-Author: David Edelsohn X-Git-Refname: refs/heads/master X-Git-Oldrev: 837142257cbde3cc03ee0dacd1d7b2fb4fa48bae X-Git-Newrev: 73114b19fb8fc9803c57285ca8dcaf788ec962b8 Message-Id: <20220811163325.536373858C74@sourceware.org> Date: Thu, 11 Aug 2022 16:33:25 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2022 16:33:25 -0000 https://gcc.gnu.org/g:73114b19fb8fc9803c57285ca8dcaf788ec962b8 commit r13-2024-g73114b19fb8fc9803c57285ca8dcaf788ec962b8 Author: David Edelsohn Date: Wed Aug 10 09:22:28 2022 -0400 testcase: Fix AIX testsuite failures Recent testsuite additions trip over AIX-specific features. gcc/testsuite/ChangeLog: * g++.dg/cpp0x/initlist-const1.C: XFAIL on AIX. Diff: --- gcc/testsuite/g++.dg/cpp0x/initlist-const1.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/g++.dg/cpp0x/initlist-const1.C b/gcc/testsuite/g++.dg/cpp0x/initlist-const1.C index de807316be6..b80410d8a62 100644 --- a/gcc/testsuite/g++.dg/cpp0x/initlist-const1.C +++ b/gcc/testsuite/g++.dg/cpp0x/initlist-const1.C @@ -4,4 +4,4 @@ const auto x = { 1, 2 }; -// { dg-final { scan-assembler-not {\.data} } } +// { dg-final { scan-assembler-not {\.data} { xfail powerpc-ibm-aix* } } }