From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7752 invoked by alias); 8 Jun 2004 04:13:03 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 7735 invoked from network); 8 Jun 2004 04:13:02 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 8 Jun 2004 04:13:02 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i584D1i5008069 for ; Tue, 8 Jun 2004 00:13:01 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i584D1025003 for ; Tue, 8 Jun 2004 00:13:01 -0400 Received: from hunt.cipe.redhat.com (hunt.cipe.redhat.com [10.0.0.52]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id i584D017017405 for ; Tue, 8 Jun 2004 00:13:01 -0400 Subject: [RFA] float.exp mips fix From: "Martin M. Hunt" To: gdb-patches@sources.redhat.com Content-Type: multipart/mixed; boundary="=-3nb7mjjns0IS9s8H6Brv" Organization: Red Hat Inc. Message-Id: <1086667980.5507.31.camel@hunt.cipe.redhat.com> Mime-Version: 1.0 Date: Tue, 08 Jun 2004 04:13:00 -0000 X-SW-Source: 2004-06/txt/msg00149.txt.bz2 --=-3nb7mjjns0IS9s8H6Brv Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 223 Add an expected pattern for mips so this test will succeed. 2004-05-26 Martin Hunt * gdb.base/float.exp: Add correct checking for mips result. -- Martin M. Hunt Red Hat Inc. --=-3nb7mjjns0IS9s8H6Brv Content-Disposition: attachment; filename=float.patch Content-Type: text/x-patch; name=float.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-length: 717 Index: gdb/testsuite/gdb.base/float.exp =================================================================== diff -u -p -u -r1.5 float.exp --- gdb/testsuite/gdb.base/float.exp 14 Apr 2004 00:54:49 -0000 1.5 +++ gdb/testsuite/gdb.base/float.exp 25 May 2004 23:31:48 -0000 @@ -63,6 +63,8 @@ if { [istarget "alpha*-*-*"] } then { gdb_test "info float" "f0.*f1.*f127.*" "info float" } elseif [istarget "m68k-*-*"] then { gdb_test "info float" "fp0.*fp1.*fp7.*" "info float" +} elseif [istarget "mips*-*-*"] then { + gdb_test "info float" "f0:.*flt:.*dbl:.*" "info float" } elseif [istarget "s390*-*-*"] then { gdb_test "info float" "fpc.*f0.*f1.*f15.*" "info float" } elseif [istarget "sh*-*"] then { --=-3nb7mjjns0IS9s8H6Brv--