From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24706 invoked by alias); 16 Oct 2013 09:57:49 -0000 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 Received: (qmail 24668 invoked by uid 89); 16 Oct 2013 09:57:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.4 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 16 Oct 2013 09:57:48 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r9G9vlXq025858 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 16 Oct 2013 05:57:47 -0400 Received: from host2.jankratochvil.net (ovpn-116-26.ams2.redhat.com [10.36.116.26]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r9G9vhp1011240 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Wed, 16 Oct 2013 05:57:46 -0400 Date: Wed, 16 Oct 2013 09:57:00 -0000 From: Jan Kratochvil To: Keith Seitz Cc: "gdb-patches@sourceware.org ml" Subject: Regression for gdb.pascal/* [Re: [RFA 4/4] Constify parse_linesepc] Message-ID: <20131016095743.GA17072@host2.jankratochvil.net> References: <5249C987.50809@redhat.com> <87d2no4uim.fsf@fleche.redhat.com> <524BA344.2070802@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <524BA344.2070802@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2013-10/txt/msg00478.txt.bz2 On Wed, 02 Oct 2013 06:38:28 +0200, Keith Seitz wrote: > All committed. Thank you Sergio and Tom for looking at this! c85cddc51d5d9e4423509a2dc7cf3d9809451b49 is the first bad commit commit c85cddc51d5d9e4423509a2dc7cf3d9809451b49 Author: Keith Seitz Date: Wed Oct 2 00:46:06 2013 +0000 Constification of parse_linespec and fallout: https://sourceware.org/ml/gdb-patches/2013-09/msg01017.html https://sourceware.org/ml/gdb-patches/2013-09/msg01018.html https://sourceware.org/ml/gdb-patches/2013-09/msg01019.html https://sourceware.org/ml/gdb-patches/2013-09/msg01020.html You need fpc installed. -PASS: gdb.pascal/floats.exp: print 2 * r -PASS: gdb.pascal/floats.exp: print 2.0 * r +FAIL: gdb.pascal/floats.exp: print 2 * r +FAIL: gdb.pascal/floats.exp: print 2.0 * r -PASS: gdb.pascal/floats.exp: print 35 / 2 +FAIL: gdb.pascal/floats.exp: print 35 / 2 -PASS: gdb.pascal/integers.exp: print i + 1 = j +FAIL: gdb.pascal/integers.exp: print i + 1 = j -PASS: gdb.pascal/integers.exp: print i + 1 < j -PASS: gdb.pascal/integers.exp: print i + 1 <= j -PASS: gdb.pascal/integers.exp: print i + 1 > j -PASS: gdb.pascal/integers.exp: print i + 1 >= j -PASS: gdb.pascal/integers.exp: print 2 * i +FAIL: gdb.pascal/integers.exp: print i + 1 < j +FAIL: gdb.pascal/integers.exp: print i + 1 <= j +FAIL: gdb.pascal/integers.exp: print i + 1 > j +FAIL: gdb.pascal/integers.exp: print i + 1 >= j +FAIL: gdb.pascal/integers.exp: print 2 * i -PASS: gdb.pascal/integers.exp: print 35 div 2 -PASS: gdb.pascal/integers.exp: print 35 mod 2 -PASS: gdb.pascal/integers.exp: print i+10*j+100*k -PASS: gdb.pascal/integers.exp: print (i + 5) * (j + 7) +FAIL: gdb.pascal/integers.exp: print 35 div 2 +FAIL: gdb.pascal/integers.exp: print 35 mod 2 +FAIL: gdb.pascal/integers.exp: print i+10*j+100*k +FAIL: gdb.pascal/integers.exp: print (i + 5) * (j + 7) Jan