From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10201 invoked by alias); 29 Jul 2003 22:07:56 -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 10136 invoked from network); 29 Jul 2003 22:07:55 -0000 Received: from unknown (HELO concert.shout.net) (204.253.184.25) by sources.redhat.com with SMTP; 29 Jul 2003 22:07:55 -0000 Received: from duracef.shout.net (duracef.shout.net [204.253.184.12]) by concert.shout.net (8.12.9/8.12.9) with ESMTP id h6TM7rin032040; Tue, 29 Jul 2003 17:07:53 -0500 Received: from duracef.shout.net (localhost [127.0.0.1]) by duracef.shout.net (8.12.9/8.12.9) with ESMTP id h6TM7rHK018579; Tue, 29 Jul 2003 17:07:53 -0500 Received: (from mec@localhost) by duracef.shout.net (8.12.9/8.12.9/Submit) id h6TM7rl2018578; Tue, 29 Jul 2003 18:07:53 -0400 Date: Tue, 29 Jul 2003 22:07:00 -0000 From: Michael Elizabeth Chastain Message-Id: <200307292207.h6TM7rl2018578@duracef.shout.net> To: gdb-patches@sources.redhat.com, msnyder@redhat.com Subject: Re: Add sh target to float.exp X-SW-Source: 2003-07/txt/msg00537.txt.bz2 Proofread but not tested, looks okay to me. You might want to start using gdb_test_multiple. gdb.base/gdb1250.exp is a short example. gdb_test_multiple "info float" "info float" { -re ".*fpul.*fr0.*dr0.*$gdb_prompt $" { # SH may or may not have an FPU pass "info float (with FPU)" } -re "No floating.point info available for this processor.*$gdb_prompt $" { pass "info float (without FPU)" } } Or leave gdb_test_multiple for another day, whatever. Michael C