From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8853 invoked by alias); 13 Mar 2009 02:25:33 -0000 Received: (qmail 8807 invoked by uid 22791); 13 Mar 2009 02:25:32 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_33 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 13 Mar 2009 02:25:28 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 394372C686F for ; Thu, 12 Mar 2009 22:25:26 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id IW9Bf4bERbuo for ; Thu, 12 Mar 2009 22:25:26 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id CACA02C6866 for ; Thu, 12 Mar 2009 22:25:25 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 6E337F5C8D; Thu, 12 Mar 2009 19:25:22 -0700 (PDT) Date: Fri, 13 Mar 2009 02:32:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org Subject: Re: [commit/Ada] Print the correct type for float division/multiplication Message-ID: <20090313022522.GE8368@adacore.com> References: <20090313022135.GF11284@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="ffoCPvUAPMgSXi6H" Content-Disposition: inline In-Reply-To: <20090313022135.GF11284@adacore.com> User-Agent: Mutt/1.5.18 (2008-05-17) 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 X-SW-Source: 2009-03/txt/msg00192.txt.bz2 --ffoCPvUAPMgSXi6H Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 423 > (I do realize now that I forgot to remove some commented out code > in the .exp file, so I'll fix that next. Sorry!) Fixed thusly: 2009-03-12 Joel Brobecker * gdb.ada/ptype_arith_binop.exp: Remove some commented-out code that was checked in by mistake. Remove loading of ada.exp, since this is not necessary in this case. Tested on amd64-linux. Checked in. -- Joel --ffoCPvUAPMgSXi6H Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="12-erratum.diff" Content-length: 1750 Index: gdb.ada/ptype_arith_binop.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.ada/ptype_arith_binop.exp,v retrieving revision 1.1 diff -u -p -r1.1 ptype_arith_binop.exp --- gdb.ada/ptype_arith_binop.exp 13 Mar 2009 02:15:36 -0000 1.1 +++ gdb.ada/ptype_arith_binop.exp 13 Mar 2009 02:23:54 -0000 @@ -17,28 +17,9 @@ if $tracelevel then { strace $tracelevel } -load_lib "ada.exp" - -# set testdir "array_bounds" -# set testfile "${testdir}/bar" -# set srcfile ${srcdir}/${subdir}/${testfile}.adb -# set binfile ${objdir}/${subdir}/${testfile} -# -# file mkdir ${objdir}/${subdir}/${testdir} -# if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } { -# return -1 -# } - gdb_exit gdb_start gdb_reinitialize_dir $srcdir/$subdir -# gdb_load ${binfile} - -#set bp_location [gdb_get_line_number "STOP" ${testdir}/bar.adb] -#if ![runto "bar.adb:$bp_location" ] then { -# perror "Couldn't run ${testfile}" -# return -#} gdb_test "set lang ada" \ "" \ Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/testsuite/ChangeLog,v retrieving revision 1.1824 diff -u -p -r1.1824 ChangeLog --- ChangeLog 13 Mar 2009 02:15:36 -0000 1.1824 +++ ChangeLog 13 Mar 2009 02:24:00 -0000 @@ -1,5 +1,11 @@ 2009-03-12 Joel Brobecker + * gdb.ada/ptype_arith_binop.exp: Remove some commented-out code + that was checked in by mistake. Remove loading of ada.exp, since + this is not necessary in this case. + +2009-03-12 Joel Brobecker + * gdb.ada/ptype_arith_binop.exp: New testcase. 2009-03-12 Joel Brobecker --ffoCPvUAPMgSXi6H--