From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19626 invoked by alias); 9 Feb 2008 09:04:55 -0000 Received: (qmail 19558 invoked by uid 48); 9 Feb 2008 09:04:13 -0000 Date: Sat, 09 Feb 2008 09:04:00 -0000 Message-ID: <20080209090413.19557.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug ada/35143] Serious regression on ACATS results since 4.2.3 In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "laurent at guerby dot net" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2008-02/txt/msg01028.txt.bz2 ------- Comment #7 from laurent at guerby dot net 2008-02-09 09:04 ------- And then this one: --BEGIN exceptiontest3.adb with Ada.Text_IO; use Ada.Text_IO; procedure ExceptionTest3 is function F return Boolean is begin raise Constraint_Error; return True; end F; begin begin if F then Put_Line ("Not ok"); else Put_Line ("Not ok and bad value"); end if; exception when Constraint_Error => Put_Line ("Caught Constraint_Error -- inner"); when others => Put_Line ("not ok wrong exception"); end; exception when others => Put_Line ("Caught Constraint_Error -- outer -- not OK"); end ExceptionTest3; --END exceptiontest3.adb -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35143