From patchwork Tue May 24 17:41:03 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janis Johnson X-Patchwork-Id: 97187 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 CBD7FB6F74 for ; Wed, 25 May 2011 03:40:03 +1000 (EST) Received: (qmail 805 invoked by alias); 24 May 2011 17:40:00 -0000 Received: (qmail 731 invoked by uid 22791); 24 May 2011 17:39:58 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL, BAYES_00, TW_MF, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 24 May 2011 17:39:45 +0000 Received: (qmail 13222 invoked from network); 24 May 2011 17:39:44 -0000 Received: from unknown (HELO ?192.168.1.4?) (janisjo@127.0.0.2) by mail.codesourcery.com with ESMTPA; 24 May 2011 17:39:44 -0000 Message-ID: <4DDBEDAF.8020100@codesourcery.com> Date: Tue, 24 May 2011 10:41:03 -0700 From: Janis Johnson User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110424 Thunderbird/3.1.10 MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org Subject: [testsuite] update error message in arm test X-IsSubscribed: yes 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 The error message for unknown types changed a few months ago. Update a test that still looks for the old message. Tested on arm-none-linux-gnueabi. OK for trunk and 4.6? 2011-05-24 Janis Johnson * gcc.target/arm/fp16-compile-none-1.c: Update expected error. Index: gcc.target/arm/fp16-compile-none-1.c =================================================================== --- gcc.target/arm/fp16-compile-none-1.c (revision 174094) +++ gcc.target/arm/fp16-compile-none-1.c (working copy) @@ -3,4 +3,4 @@ /* __fp16 type name is not recognized unless you explicitly enable it by selecting -mfp16-format=ieee or -mfp16-format=alternative. */ -__fp16 xx = 0.0; /* { dg-error "expected" } */ +__fp16 xx = 0.0; /* { dg-error "unknown type name" } */