From patchwork Fri Aug 5 14:00:59 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Weigand X-Patchwork-Id: 3289 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 091F123F46 for ; Fri, 5 Aug 2011 14:01:04 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id CD7E0A18543 for ; Fri, 5 Aug 2011 14:01:03 +0000 (UTC) Received: by qwb8 with SMTP id 8so1806934qwb.11 for ; Fri, 05 Aug 2011 07:01:03 -0700 (PDT) Received: by 10.224.27.14 with SMTP id g14mr1764673qac.119.1312552863183; Fri, 05 Aug 2011 07:01:03 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.6.73 with SMTP id 9cs49532qcy; Fri, 5 Aug 2011 07:01:02 -0700 (PDT) Received: by 10.227.202.19 with SMTP id fc19mr1887291wbb.61.1312552862283; Fri, 05 Aug 2011 07:01:02 -0700 (PDT) Received: from mtagate7.uk.ibm.com (mtagate7.uk.ibm.com [194.196.100.167]) by mx.google.com with ESMTPS id ge8si6283192wbb.32.2011.08.05.07.01.01 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Aug 2011 07:01:02 -0700 (PDT) Received-SPF: pass (google.com: domain of uweigand@de.ibm.com designates 194.196.100.167 as permitted sender) client-ip=194.196.100.167; Authentication-Results: mx.google.com; spf=pass (google.com: domain of uweigand@de.ibm.com designates 194.196.100.167 as permitted sender) smtp.mail=uweigand@de.ibm.com Received: from d06nrmr1307.portsmouth.uk.ibm.com (d06nrmr1307.portsmouth.uk.ibm.com [9.149.38.129]) by mtagate7.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p75E118M015888 for ; Fri, 5 Aug 2011 14:01:01 GMT Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1307.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p75E11dG2306278 for ; Fri, 5 Aug 2011 15:01:01 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p75E10EN000497 for ; Fri, 5 Aug 2011 08:01:00 -0600 Received: from tuxmaker.boeblingen.de.ibm.com (tuxmaker.boeblingen.de.ibm.com [9.152.85.9]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with SMTP id p75E0xjN032489 for ; Fri, 5 Aug 2011 08:00:59 -0600 Message-Id: <201108051400.p75E0xjN032489@d06av02.portsmouth.uk.ibm.com> Received: by tuxmaker.boeblingen.de.ibm.com (sSMTP sendmail emulation); Fri, 05 Aug 2011 16:00:59 +0200 Subject: [commit] Disable two more tests with remote targets (fwd) To: patches@linaro.org Date: Fri, 5 Aug 2011 16:00:59 +0200 (CEST) From: "Ulrich Weigand" X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 http://sourceware.org/ml/gdb-patches/2011-08/msg00072.html ChangeLog: * gdb.base/nostdlib.exp: Skip on gdb_stub targets. * gdb.base/watch-vfork.exp: Skip on remote targets. Index: gdb/testsuite/gdb.base/nostdlib.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/nostdlib.exp,v retrieving revision 1.2 diff -u -p -r1.2 nostdlib.exp --- gdb/testsuite/gdb.base/nostdlib.exp 1 Jan 2011 15:33:42 -0000 1.2 +++ gdb/testsuite/gdb.base/nostdlib.exp 4 Aug 2011 14:57:19 -0000 @@ -18,6 +18,14 @@ set srcfile ${testfile}.c set executable ${testfile} set binfile ${objdir}/${subdir}/${executable} +# If we're using a stub, breakpoints at the entry point will not trigger. +# See also the comment in break-entry.exp. + +if [target_info exists use_gdb_stub] { + untested ${testfile}.exp + return +} + # default_target_compile would otherwise add "-lm" making the testcase # dependent on whether the system libraries are already prelinked. # prelink: Could not set /lib64/libm-2.11.1.so owner or mode: Operation not permitted Index: gdb/testsuite/gdb.base/watch-vfork.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/watch-vfork.exp,v retrieving revision 1.4 diff -u -p -r1.4 watch-vfork.exp --- gdb/testsuite/gdb.base/watch-vfork.exp 1 Jan 2011 15:33:43 -0000 1.4 +++ gdb/testsuite/gdb.base/watch-vfork.exp 4 Aug 2011 14:57:19 -0000 @@ -15,6 +15,11 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# There's no support for vfork events in the remote protocol. +if { [is_remote target] } { + return 0 +} + global srcfile set testfile "watch-vfork" if { [build_executable ${testfile}.exp ${testfile} ${testfile}.c {debug}] } {