From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15102 invoked by alias); 20 Dec 2015 15:40:20 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 15091 invoked by uid 89); 20 Dec 2015 15:40:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=AWL,BAYES_50,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=UD:stabs, gdbstabs, UD:gdb.stabs, gdb.stabs X-HELO: mail-qk0-f182.google.com Received: from mail-qk0-f182.google.com (HELO mail-qk0-f182.google.com) (209.85.220.182) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sun, 20 Dec 2015 15:40:17 +0000 Received: by mail-qk0-f182.google.com with SMTP id t125so129260632qkh.3 for ; Sun, 20 Dec 2015 07:40:17 -0800 (PST) X-Received: by 10.55.74.209 with SMTP id x200mr19106900qka.106.1450626015764; Sun, 20 Dec 2015 07:40:15 -0800 (PST) MIME-Version: 1.0 Received: by 10.55.159.151 with HTTP; Sun, 20 Dec 2015 07:39:46 -0800 (PST) In-Reply-To: <20151220051518.GC4639@adacore.com> References: <20151220051518.GC4639@adacore.com> From: Simon Marchi Date: Sun, 20 Dec 2015 15:40:00 -0000 Message-ID: Subject: Re: [PATCH 2/3] Remove references to HP CC/aCC compiler from testsuite To: Joel Brobecker Cc: gdb-patches@sourceware.org Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-12/txt/msg00405.txt.bz2 On 20 December 2015 at 00:15, Joel Brobecker wrote: >> From 8d7c3cff8ced75bedbe050d3fefde10e3349de70 Mon Sep 17 00:00:00 2001 >> From: Simon Marchi >> Date: Sat, 19 Dec 2015 11:36:49 -0500 >> Subject: [PATCH] Remove references to HP CC/aCC compiler from testsuite >> >> The HP CC/aCC compiler is exclusive to HP-UX, for which support has been >> explicitely removed. Therefore, It does not make sense to keep tests > > "explicitly" Fixed. >> for these compilers' quirks. >> >> gdb/testsuite/ChangeLog: >> >> * gdb.base/break.exp: Remove references to HP CC/aCC compilers. >> * gdb.base/call-ar-st.exp: Likewise. >> * gdb.base/callfuncs.exp: Likewise. >> * gdb.base/condbreak.exp: Likewise. >> * gdb.base/constvars.exp: Likewise. >> * gdb.base/hbreak2.exp: Likewise. >> * gdb.base/langs.exp: Likewise. >> * gdb.base/list.exp: Likewise. >> * gdb.base/long_long.exp: Likewise. >> * gdb.base/ptype.exp: Likewise. >> * gdb.base/scope.exp: Likewise. >> * gdb.base/signals.exp: Likewise. >> * gdb.base/so-impl-ld.exp: Likewise. >> * gdb.base/varargs.exp: Likewise. >> * gdb.base/volatile.exp: Likewise. >> * gdb.base/whatis.exp: Likewise. >> * gdb.cp/cplusfuncs.exp: Likewise. >> * gdb.cp/inherit.exp: Likewise. >> * gdb.cp/local.exp: Likewise. >> * gdb.cp/member-ptr.exp: Likewise. >> * gdb.cp/method.exp: Likewise. >> * gdb.cp/overload.exp: Likewise. >> * gdb.cp/templates.exp: Likewise. >> * gdb.stabs/weird.exp: Likewise. >> * lib/compiler.c: Likewise. >> * lib/compiler.cc: Likewise. >> * lib/cp-support.exp: Likewise. >> * lib/gdb.exp: Likewise. > > OK for me. > > Note that there was one area where an expected output alternative > was removed which mentioned hp aCC, but also GCC 2.95. I assumed > it's OK to only support more recent versions than 2.95 ;-). Indeed, I didn't feel too bad removing it. I'll push this patch at the same time as 3/3, so it'll give some time to other people who want to take a look at it. Thanks for the review!