From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29310 invoked by alias); 3 Jan 2014 19:16:20 -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 29232 invoked by uid 89); 3 Jan 2014 19:16:19 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RCVD_IN_SORBS_WEB,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ea0-f175.google.com Received: from mail-ea0-f175.google.com (HELO mail-ea0-f175.google.com) (209.85.215.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 03 Jan 2014 19:16:19 +0000 Received: by mail-ea0-f175.google.com with SMTP id z10so6894872ead.34 for ; Fri, 03 Jan 2014 11:16:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=hTKp05oEqAn2iWL0hW5YZYtnImWv+2NK+IDoH3aPHc8=; b=N9vdhmp68lEPVUj+FGCMN4AX2nQsQoAGdhWWgdEDbWS2/8JgL3LJ/LnuAmuyUfdRgP N8b5qzj4QdKxHqGkXZe2JpmiHDCujWZ/UPNXXAqnrD8wj6J4eo/m9aqz1AAI1zUjYme4 RgMU8MkrZGo/1Gc/iUyvHuVsMzX8lNIR52eOvI0KnURhE6Lu7SJqraY4nscUTd0CELHp 0QTeRz6aVycsauJGQRtjRSP7DSikDqpoU/nqlDWqyE6PbEj5lRJZoajfoJDBH1bIykdr Ql/WjXwM74dzbHyOo1xsV8DsjvRd01paa3Qrjdh/O2b/uckZwf5l/iEVYhEwHYV0yy7C GXng== X-Gm-Message-State: ALoCoQlOiKwmWXQnVO0HTaaZzJwpGMg6bMEwDYtPv9+6JEQD+9r/zufQ1PWQD8puEE/+neEtB7AI X-Received: by 10.14.204.70 with SMTP id g46mr3906577eeo.84.1388776575884; Fri, 03 Jan 2014 11:16:15 -0800 (PST) Received: from localhost.localdomain ([182.185.255.37]) by mx.google.com with ESMTPSA id h48sm147395187eev.3.2014.01.03.11.16.13 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 03 Jan 2014 11:16:15 -0800 (PST) From: Omair Javaid To: gdb-patches@sourceware.org Cc: patches@linaro.org Subject: [PATCH v2 6/7] Updates configure.tgt and enables gdb.reverse testsuite Date: Fri, 03 Jan 2014 19:16:00 -0000 Message-Id: <7de7efcad5539b4428da25ad543a58d8d9679f6f.1388709773.git.omair.javaid@linaro.org> In-Reply-To: References: In-Reply-To: References: X-IsSubscribed: yes X-SW-Source: 2014-01/txt/msg00016.txt.bz2 This patch adds linux-record.o to gdb_target_obs in configure.tgt and enables gdb.reverse testsuite for arm*-linux* targets. gdb: 2014-01-03 Omair Javaid * configure.tgt: Add linux-record.o to gdb_target_obs. gdb/testsuite: 2014-01-03 Omair Javaid * lib/gdb.exp (supports_process_record): Return true for arm*-linux*. --- gdb/configure.tgt | 2 +- gdb/testsuite/lib/gdb.exp | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/gdb/configure.tgt b/gdb/configure.tgt index ea0faf1..5410f72 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -89,7 +89,7 @@ arm*-wince-pe | arm*-*-mingw32ce*) arm*-*-linux*) # Target: ARM based machine running GNU/Linux gdb_target_obs="arm-tdep.o arm-linux-tdep.o glibc-tdep.o \ - solib-svr4.o symfile-mem.o linux-tdep.o" + solib-svr4.o symfile-mem.o linux-tdep.o linux-record.o" build_gdbserver=yes ;; arm*-*-netbsd* | arm*-*-knetbsd*-gnu) diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index bde4e48..047aefb 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -1774,7 +1774,8 @@ proc supports_process_record {} { return [target_info gdb,use_precord] } - if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } { + if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"] + || [istarget "i\[34567\]86-*-linux*"] } { return 1 } @@ -1789,7 +1790,8 @@ proc supports_reverse {} { return [target_info gdb,can_reverse] } - if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } { + if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"] + || [istarget "i\[34567\]86-*-linux*"] } { return 1 } -- 1.7.9.5