From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7991 invoked by alias); 7 Mar 2005 20:36:16 -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 7967 invoked from network); 7 Mar 2005 20:36:09 -0000 Received: from unknown (HELO priv-edtnes56.telusplanet.net) (199.185.220.220) by sourceware.org with SMTP; 7 Mar 2005 20:36:09 -0000 Received: from takamaka.act-europe.fr ([142.179.108.108]) by priv-edtnes56.telusplanet.net (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20050307203608.ZGOV5607.priv-edtnes56.telusplanet.net@takamaka.act-europe.fr> for ; Mon, 7 Mar 2005 13:36:08 -0700 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 5FBA747DC0; Mon, 7 Mar 2005 12:36:08 -0800 (PST) Date: Mon, 07 Mar 2005 20:36:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA/testsuite/ada] KFAIL the tests that use "start" Message-ID: <20050307203608.GH1252@adacore.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="lMM8JwqTlfDpEaS6" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2005-03/txt/msg00089.txt.bz2 --lMM8JwqTlfDpEaS6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 437 Hello, As suggested in http://sources.redhat.com/ml/gdb/2005-03/msg00067.html, I am posting a patch that KFAILs the two tests that currently fail while a patch fixing the problem is being reviewed. 2005-03-07 Joel Brobecker * gdb.ada/null_record.exp: KFAIL failing "start" test. * gdb.ada/start.exp: Likewise. Tested on x86-linux, changes the FAIL to a KFAIL. Ok to apply? Thanks, -- Joel --lMM8JwqTlfDpEaS6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ada-ts.diff" Content-length: 1213 Index: gdb.ada/null_record.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.ada/null_record.exp,v retrieving revision 1.6 diff -u -p -r1.6 null_record.exp --- gdb.ada/null_record.exp 24 Feb 2005 23:54:03 -0000 1.6 +++ gdb.ada/null_record.exp 7 Mar 2005 20:31:54 -0000 @@ -36,6 +36,9 @@ gdb_start gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binfile} +# The "start" command is not yet fully implemented for Ada. +setup_kfail *-*-* "ada/1892" + gdb_test "start" \ "null_record \\(\\) at .*null_record.adb.*" \ "start" Index: gdb.ada/start.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.ada/start.exp,v retrieving revision 1.2 diff -u -p -r1.2 start.exp --- gdb.ada/start.exp 24 Feb 2005 23:54:03 -0000 1.2 +++ gdb.ada/start.exp 7 Mar 2005 20:31:54 -0000 @@ -36,6 +36,9 @@ gdb_start gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binfile} +# The "start" command is not yet fully implemented for Ada. +setup_kfail *-*-* "ada/1892" + # Verify that "start" lands inside the right procedure. gdb_test "start" \ "dummy \\(\\) at .*dummy.adb.*" \ --lMM8JwqTlfDpEaS6--