From patchwork Fri Jun 8 12:42:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 163776 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id C15A7B6FBD for ; Fri, 8 Jun 2012 22:46:01 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1339764362; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:From:To:Cc:Subject:References:Date:In-Reply-To: Message-ID:User-Agent:MIME-Version:Content-Type:Mailing-List: Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:Sender:Delivered-To; bh=UZfy0VCIqYexEj+4XZotlXT/WEQ=; b=QOsm/HCC60oWSQeU+JWCH6KBMj69a4SCxDmUUszL1nWXuAvC3EeV4YJv20Ihq7 uJn940G+idFNcRYX+FuBYddoRMwFpAuaT+KZSV1W+NwlNbxrW2RMRoa228oGTlMZ eeiCaFB6u0f6rPRsJzyD8H2Ua8v5d542G5VAy6S7ksBow= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Received:From:To:Cc:Subject:References:X-Yow:Date:In-Reply-To:Message-ID:User-Agent:MIME-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=YE5F3vaxga4uO1hbr6argY22yVJD/NSUTS6LXCh60OmzmbzR638Lcl1hc8KhHK fOVs4IhVV0DaZaa0HV1zj9+jaZKc/2iaDM/pr4oofdw7I9n7Ing3ELVWz2+rQX2r JF84TIVvQ6/OfCzBuUhI8iT5y0U9Pw3lTSduVlXz0FLRc=; Received: (qmail 32561 invoked by alias); 8 Jun 2012 12:45:53 -0000 Received: (qmail 32543 invoked by uid 22791); 8 Jun 2012 12:45:50 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mail-out.m-online.net (HELO mail-out.m-online.net) (212.18.0.9) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 08 Jun 2012 12:42:40 +0000 Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3W83Db2gpPz4Kh0g; Fri, 8 Jun 2012 14:42:37 +0200 (CEST) Received: from igel.home (ppp-93-104-149-114.dynamic.mnet-online.de [93.104.149.114]) by mail.mnet-online.de (Postfix) with ESMTPA id 3W83DY4Rzhz4KKBJ; Fri, 8 Jun 2012 14:42:37 +0200 (CEST) Received: by igel.home (Postfix, from userid 501) id 4A0F7CA2A2; Fri, 8 Jun 2012 14:42:37 +0200 (CEST) From: Andreas Schwab To: Ian Lance Taylor Cc: gcc-patches@gcc.gnu.org, gofrontend-dev@googlegroups.com Subject: Re: libgo patch committed: Fix testsuite on PPC References: X-Yow: Yow! Am I JOGGING yet?? Date: Fri, 08 Jun 2012 14:42:36 +0200 In-Reply-To: (Ian Lance Taylor's message of "Tue, 03 Apr 2012 11:27:23 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Ian Lance Taylor writes: > @@ -326,13 +336,18 @@ > } > > { > + text="T" > + case "$GOARCH" in > + ppc*) text="D" ;; This is wrong for ppc. Andreas. diff --git a/libgo/testsuite/gotest b/libgo/testsuite/gotest index da1162e..208cbaf 100755 --- a/libgo/testsuite/gotest +++ b/libgo/testsuite/gotest @@ -355,7 +355,7 @@ localname() { { text="T" case "$GOARCH" in - ppc*) text="D" ;; + ppc64) text="D" ;; esac symtogo='sed -e s/_test/XXXtest/ -e s/.*_\([^_]*\.\)/\1/ -e s/XXXtest/_test/'