From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 88278 invoked by alias); 22 Jun 2018 17:43:10 -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 88268 invoked by uid 89); 22 Jun 2018 17:43:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 22 Jun 2018 17:43:07 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id w5MHh1TT021102 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Fri, 22 Jun 2018 13:43:06 -0400 Received: by simark.ca (Postfix, from userid 112) id 2F1E11EF29; Fri, 22 Jun 2018 13:43:00 -0400 (EDT) Received: from simark.ca (localhost [127.0.0.1]) by simark.ca (Postfix) with ESMTP id CF4231E059; Fri, 22 Jun 2018 13:42:57 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 22 Jun 2018 17:43:00 -0000 From: Simon Marchi To: Simon Marchi Cc: gdb-patches@sourceware.org, b7.10110111@gmail.com Subject: Re: [PATCH] Fix "info registers" regexes in gdb.base/jit-reader.exp In-Reply-To: <1528222791-10116-1-git-send-email-simon.marchi@ericsson.com> References: <1517658143-946-1-git-send-email-b7.10110111@gmail.com> <1528222791-10116-1-git-send-email-simon.marchi@ericsson.com> Message-ID: X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.3.6 X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Fri, 22 Jun 2018 17:43:01 +0000 X-IsSubscribed: yes X-SW-Source: 2018-06/txt/msg00548.txt.bz2 On 2018-06-05 14:19, Simon Marchi wrote: > Commit > > e813d34 ("Align natural-format register values to the same column") > > changed the output of "info registers" (tabs to spaces), but didn't > update gdb.base/jit-reader.exp. Update the regexes to expect spaces > instead. > > For some reason, this test is skipped by the buildbot (even in the > native x86-64 configuration), so we missed it. We will need to > investigate why... I pushed this. In the end, the x86-64 builder had a problem causing gcc to fail to compile all the test cases, leading to all of them being skipped. It looks fine now. Simon