From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18444 invoked by alias); 9 Nov 2009 23:51:05 -0000 Received: (qmail 18432 invoked by uid 22791); 9 Nov 2009 23:51:05 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 09 Nov 2009 23:51:00 +0000 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nA9Nowm9005805 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 9 Nov 2009 18:50:58 -0500 Received: from [IPv6:::1] (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nA9NotOg010876 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 9 Nov 2009 18:50:57 -0500 Message-ID: <4AF8AADF.7000005@redhat.com> Date: Mon, 09 Nov 2009 23:51:00 -0000 From: Keith Seitz User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.4pre) Gecko/20091014 Fedora/3.0-2.8.b4.fc11 Lightning/1.0pre Thunderbird/3.0b4 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Re: [commit] Fix up return values in ctti.exp References: <20091102155545.GA14328@caradoc.them.org> In-Reply-To: <20091102155545.GA14328@caradoc.them.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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-11/txt/msg00200.txt.bz2 On 11/02/2009 07:55 AM, Daniel Jacobowitz wrote: > This test is bit-rotten because it is disabled for GCC. It still > doesn't pass with GCC, so I left it disabled, but I hope that Keith's > branch will resolve this. I commented out the bit in the test that causes the majority of tests to get skipped with gcc and ran ctti.exp through both FSF gdb and my expr-cumulative archer branch: FSF gdb: Running ../../../src/gdb/testsuite/gdb.cp/ctti.exp ... FAIL: gdb.cp/ctti.exp: print add(2,2) FAIL: gdb.cp/ctti.exp: print add(2.25,2.25) FAIL: gdb.cp/ctti.exp: print add('A','A') FAIL: gdb.cp/ctti.exp: print add2(2,2) FAIL: gdb.cp/ctti.exp: print add2(2.25,2.25) FAIL: gdb.cp/ctti.exp: print add2('A','A') FAIL: gdb.cp/ctti.exp: print add3(2,2) FAIL: gdb.cp/ctti.exp: print add3(2.25,2.25) FAIL: gdb.cp/ctti.exp: print add3('A','A') FAIL: gdb.cp/ctti.exp: print add4(2,2) FAIL: gdb.cp/ctti.exp: print add4(2.25,2.25) FAIL: gdb.cp/ctti.exp: print add4('A','A') === gdb Summary === # of expected passes 4 # of unexpected failures 12 /home/keiths/sources/gdb/linux/gdb/testsuite/../../gdb/gdb version 7.0.50.20091109-cvs -nw -nx Archer/expr-cumulative: Running ../../../archer/gdb/testsuite/gdb.cp/ctti.exp ... === gdb Summary === # of expected passes 16 /home/keiths/work/archer/expr-cumulative/linux/gdb/testsuite/../../gdb/gdb version 7.0.50.20090917-cvs -nw -nx I am concentrating my efforts to get the contents of expr-cumulative submitted, reviewed, and committed upstream now. Keith