From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23497 invoked by alias); 17 Nov 2009 12:36:54 -0000 Received: (qmail 23489 invoked by uid 22791); 17 Nov 2009 12:36:53 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 17 Nov 2009 12:35:49 +0000 Received: (qmail 25687 invoked from network); 17 Nov 2009 12:35:47 -0000 Received: from unknown (HELO mbp.local) (maxim@127.0.0.2) by mail.codesourcery.com with ESMTPA; 17 Nov 2009 12:35:47 -0000 Message-ID: <4B02989B.3070000@codesourcery.com> Date: Tue, 17 Nov 2009 12:36:00 -0000 From: Maxim Kuvyrkov User-Agent: Thunderbird 2.0.0.23 (Macintosh/20090812) MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: [PATCH, M68K] Support xml testsuite References: <4B029388.5070001@codesourcery.com> In-Reply-To: <4B029388.5070001@codesourcery.com> Content-Type: multipart/mixed; boundary="------------010206090809010803030007" 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/msg00384.txt.bz2 This is a multi-part message in MIME format. --------------010206090809010803030007 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 194 Hi, This simple patch adds support for the gdb.xml testsuite for M68K and ColdFire targets. OK to apply? Regards, -- Maxim Kuvyrkov CodeSourcery maxim@codesourcery.com (650) 331-3385 x724 --------------010206090809010803030007 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="fsf-gdb-m68k-testsuite.ChangeLog" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fsf-gdb-m68k-testsuite.ChangeLog" Content-length: 189 2009-11-17 Nathan Sidwell * features/m68k-core.xml: New file. 2009-11-17 Nathan Sidwell * gdb.xml/tdesc-regs.exp: Use for m68k. --------------010206090809010803030007 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="fsf-gdb-m68k-testsuite.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fsf-gdb-m68k-testsuite.patch" Content-length: 1730 ChangeLog.testsuite | 6 ++++++ gdb/features/m68k-core.xml | 24 ++++++++++++++++++++++++ gdb/testsuite/gdb.xml/tdesc-regs.exp | 3 +++ 3 files changed, 33 insertions(+), 0 deletions(-) diff --git a/gdb/features/m68k-core.xml b/gdb/features/m68k-core.xml new file mode 100644 index 0000000..f0b3d30 --- /dev/null +++ b/gdb/features/m68k-core.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gdb/testsuite/gdb.xml/tdesc-regs.exp b/gdb/testsuite/gdb.xml/tdesc-regs.exp index cc61cd0..958b18f 100644 --- a/gdb/testsuite/gdb.xml/tdesc-regs.exp +++ b/gdb/testsuite/gdb.xml/tdesc-regs.exp @@ -32,6 +32,9 @@ switch -glob -- [istarget] { "xscale-*-*" { set core-regs {arm-core.xml} } + "*m68k-*-*" { + set core-regs {m68k-core.xml} + } "mips*-*-*" { set core-regs {mips-cpu.xml mips-cp0.xml mips-fpu.xml} } --------------010206090809010803030007--