From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14921 invoked by alias); 20 Oct 2010 23:32:37 -0000 Received: (qmail 14912 invoked by uid 22791); 20 Oct 2010 23:32:36 -0000 X-SWARE-Spam-Status: No, hits=-3.3 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-outbound-2.vmware.com (HELO smtp-outbound-2.vmware.com) (65.115.85.73) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 20 Oct 2010 23:32:29 +0000 Received: from mailhost3.vmware.com (mailhost3.vmware.com [10.16.27.45]) by smtp-outbound-2.vmware.com (Postfix) with ESMTP id 13C4F52012 for ; Wed, 20 Oct 2010 16:32:26 -0700 (PDT) Received: from msnyder-server.eng.vmware.com (promd-2s-dhcp138.eng.vmware.com [10.20.124.138]) by mailhost3.vmware.com (Postfix) with ESMTP id 08B8ECD903 for ; Wed, 20 Oct 2010 16:32:25 -0700 (PDT) Message-ID: <4CBF7C09.6020601@vmware.com> Date: Wed, 20 Oct 2010 23:32:00 -0000 From: Michael Snyder User-Agent: Thunderbird 2.0.0.24 (X11/20101005) MIME-Version: 1.0 To: "gdb-patches@sourceware.org" Subject: [RFA] gdb.threads/fork-child-threads.exp: no remote support Content-Type: multipart/mixed; boundary="------------000901090707050105070101" 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: 2010-10/txt/msg00323.txt.bz2 This is a multi-part message in MIME format. --------------000901090707050105070101 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 129 Am I not right? This test should not run on a remote target, even if it is a linux target, because follow-child will not work. --------------000901090707050105070101 Content-Type: text/plain; name="fork.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fork.txt" Content-length: 711 2010-10-20 Michael Snyder * gdb.threads/fork-child-threads.exp: Don't run on remote target. Index: fork-child-threads.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.threads/fork-child-threads.exp,v retrieving revision 1.4 diff -u -p -r1.4 fork-child-threads.exp --- fork-child-threads.exp 1 Jan 2010 07:32:06 -0000 1.4 +++ fork-child-threads.exp 20 Oct 2010 23:29:15 -0000 @@ -18,6 +18,10 @@ if { ! [istarget "*-*-linux*"] } { return 0 } +if { [is_remote target] || ![isnative] } then { + return 0 +} + set testfile fork-child-threads set srcfile ${testfile}.c set binfile ${objdir}/${subdir}/${testfile} --------------000901090707050105070101--