From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27851 invoked by alias); 18 Jun 2009 15:57:37 -0000 Received: (qmail 27843 invoked by uid 22791); 18 Jun 2009 15:57:36 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_53 X-Spam-Check-By: sourceware.org Received: from mailhost.u-strasbg.fr (HELO mailhost.u-strasbg.fr) (130.79.200.156) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 18 Jun 2009 15:57:25 +0000 Received: from baal.u-strasbg.fr (baal.u-strasbg.fr [IPv6:2001:660:2402::41]) by mailhost.u-strasbg.fr (8.14.2/jtpda-5.5pre1) with ESMTP id n5IFtdpY080170 ; Thu, 18 Jun 2009 17:55:39 +0200 (CEST) Received: from mailserver.u-strasbg.fr (ms3.u-strasbg.fr [IPv6:2001:660:2402:d::12]) by baal.u-strasbg.fr (8.14.0/jtpda-5.5pre1) with ESMTP id n5IFtdKd069655 ; Thu, 18 Jun 2009 17:55:39 +0200 (CEST) (envelope-from muller@ics.u-strasbg.fr) Received: from d620muller (www-ics.u-strasbg.fr [130.79.210.225]) (user=mullerp mech=LOGIN) by mailserver.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id n5IFtcoi088825 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) ; Thu, 18 Jun 2009 17:55:38 +0200 (CEST) (envelope-from muller@ics.u-strasbg.fr) From: "Pierre Muller" To: "'Eli Zaretskii'" Cc: , , References: <001201c9ebb1$96414b10$c2c3e130$@u-strasbg.fr> <20090613150505.GA28157@caradoc.them.org> <000001c9ec65$9bf13ca0$d3d3b5e0$@u-strasbg.fr> <20090613235454.GA1893@caradoc.them.org> <20090614002516.GO25703@adacore.com> <000001c9ed8a$21cfdc30$656f9490$@u-strasbg.fr> <20090616145756.GB7730@adacore.com> <000c01c9eeda$022d8a70$06889f50$@u-strasbg.fr> <20090617133626.GA24310@caradoc.them.org> <000001c9ef88$959e9ac0$c0dbd040$@u-strasbg.fr> In-Reply-To: Subject: RE: [RFC] Improve testsuite for poor expect behavior Date: Thu, 18 Jun 2009 15:57:00 -0000 Message-ID: <001201c9f02d$3ab7d310$b0277930$@u-strasbg.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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-06/txt/msg00481.txt.bz2 > I will need to know the minimal set of Cygwin packages to install, for > this to work. To use cygwin expect with DJGPP gdb and the djgpp.exp board file I sent, you will need a minimal installation plus the dejagnu package (that should trigger the installation of some other required packages). Other packages that might be needed are: - Bash (but it's probably part of base) ... I have no other idea now, but that doesn't mean that you will not need more... One more thing that I forgot to tell you: I had to manually force two things in djbuild/gdb/testsuite/site.exp set objdir ./. set TOOL_EXECUTABLE ../gdb.exe The objdir is there to avoid translation from relative to absolute pathes, which leads to conflits both for mingw32 and djgpp as cygwin uses its own root dir and the /cygdrive/X for windows X:\ drive. The TOOL_EXECUTABLE is needed because otherwise, as I use the --host_board=djgpp which makes expect believe that host is remote, it doesn't find the correct executable... Part of expect is still incomprehensible for me ... Pierre