From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa4.mentor.iphmx.com (esa4.mentor.iphmx.com [68.232.137.252]) by sourceware.org (Postfix) with ESMTPS id ED7573857022 for ; Wed, 15 Jul 2020 19:53:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org ED7573857022 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=Sandra_Loosemore@mentor.com IronPort-SDR: lyge9bTJVH21xEgdf25ZwAp/4V+YbwtHqPQvxCbFFI4KUJD53ozrA6Z1Wxafw2pQXmcoeUbmeG FF5tpZrU3viZnL0hCT80cFXwB0XWnNLM8hXCQnaVjT+SDdzGA8UNHvbJPU2tY9kpUTFik6OUvU TnIpYCaVMQUBCzR9STS0YXV8zkSO0Eso0nYCpt3CN09efk+M0ka+Xqcy/3x5y3OxSLaqcN4hPQ KFLtEu9b+M26+XZZDqLzpMvGkXC/4Bjt3MHUnEZXOgNJBJVkWBtP/G4B16jS2yPFkwcvwbj+gW jyw= X-IronPort-AV: E=Sophos;i="5.75,356,1589270400"; d="scan'208";a="51076187" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa4.mentor.iphmx.com with ESMTP; 15 Jul 2020 11:53:38 -0800 IronPort-SDR: gQX6bvM8FvYJqkMYNjtkEO98vRzVQLCrsgE75JWQmykguYyj4225j5inUi5186wnNWqo+lo3SM WDPZ7AjoF0CWpNGd3Ltxw1YtuWauYNeZ8jDNtni2v1v8ByWTYa435MBPLtr5b+tD+jILDzjyKr Fr+0xmCb0+1F76xEcrwjtaR74grAJ6ypUlD6Fjb6rbyqd4ScuwrHv/0vKBaqkPUUqRcU21++XV RRRkDwAuFfrqN6IUU2pGAkVC0DH8w0E/KBYiy5bsknZIDSAV47t/QIDypKkpL95nbuBhjk7okQ W0Q= Subject: [ping] Re: [patch] gdb/testsuite: Fix POSIX-isms in gdb.base/shell.exp From: Sandra Loosemore To: "gdb-patches@sourceware.org" References: <6bc2b01e-3807-77b9-7d1e-d7f6a7875e49@codesourcery.com> Message-ID: <164a4e8e-ddc4-d97c-75dd-377f4be35630@codesourcery.com> Date: Wed, 15 Jul 2020 13:53:31 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.8.0 MIME-Version: 1.0 In-Reply-To: <6bc2b01e-3807-77b9-7d1e-d7f6a7875e49@codesourcery.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-ClientProxiedBy: SVR-ORW-MBX-07.mgc.mentorg.com (147.34.90.207) To svr-orw-mbx-03.mgc.mentorg.com (147.34.90.203) X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jul 2020 19:53:58 -0000 Ping? I'd like to get this patch into the GDB 10 branch. https://sourceware.org/pipermail/gdb-patches/2020-June/169865.html On 6/24/20 7:35 PM, Sandra Loosemore wrote: > This patch fixes a group of failures in gdb.base/shell.exp on Windows > host due to assumptions that GDB is launching a POSIX-like shell.  On > Windows, we get CMD.EXE instead. > > There is a potential second group of failures on Windows host not > addressed by this patch, due to the dependence of some of these tests on > utilities like wc, sed, and grep.  These tests happen to work for me > because the test harness connects to the remote host using Cygwin ssh > and both GDB and CMD.EXE inherit the PATH setting from the parent Cygwin > shell.  I don't know if disabling those tests on Windows host too is > appropriate, or again if this is an instance of badly-designed tests > that could be rewritten to avoid those dependencies.  WDYT? > > -Sandra