From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19781 invoked by alias); 29 Oct 2007 22:55:02 -0000 Received: (qmail 19763 invoked by uid 22791); 29 Oct 2007 22:55:01 -0000 X-Spam-Check-By: sourceware.org Received: from nf-out-0910.google.com (HELO nf-out-0910.google.com) (64.233.182.186) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 29 Oct 2007 22:54:58 +0000 Received: by nf-out-0910.google.com with SMTP id b11so1475559nfh for ; Mon, 29 Oct 2007 15:54:55 -0700 (PDT) Received: by 10.82.152.16 with SMTP id z16mr11784450bud.1193698494378; Mon, 29 Oct 2007 15:54:54 -0700 (PDT) Received: from ?78.130.29.130? ( [78.130.29.130]) by mx.google.com with ESMTPS id f4sm1538784nfh.2007.10.29.15.54.52 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 29 Oct 2007 15:54:53 -0700 (PDT) Message-ID: <47266227.1020800@portugalmail.pt> Date: Mon, 29 Oct 2007 22:55:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-BR; rv:1.8.1.6) Gecko/20070728 Thunderbird/2.0.0.6 Mnenhy/0.7.5.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Use $EXEEXT to sepdebug.exp and sepsymtab.exp Content-Type: multipart/mixed; boundary="------------010506080908050206000704" 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: 2007-10/txt/msg00782.txt.bz2 This is a multi-part message in MIME format. --------------010506080908050206000704 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 111 Hi, This is needed on Windows plaforms. Strip and objcopy don't automatically add .exe. Cheers, Pedro Alves --------------010506080908050206000704 Content-Type: text/x-diff; name="sepdebug.exp.win.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sepdebug.exp.win.diff" Content-length: 1491 2007-10-29 Pedro Alves * gdb.base/sepdebug.exp (binfile): Add ${EXEEXT}. * gdb.base/sepsymtab.exp (binfile): Add ${EXEEXT}. --- gdb/testsuite/gdb.base/sepdebug.exp | 2 +- gdb/testsuite/gdb.base/sepsymtab.exp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: src/gdb/testsuite/gdb.base/sepdebug.exp =================================================================== --- src.orig/gdb/testsuite/gdb.base/sepdebug.exp 2007-10-29 20:30:18.000000000 +0000 +++ src/gdb/testsuite/gdb.base/sepdebug.exp 2007-10-29 20:30:22.000000000 +0000 @@ -41,7 +41,7 @@ set bug_id 0 set testfile "sepdebug" set srcfile ${testfile}.c -set binfile ${objdir}/${subdir}/${testfile} +set binfile ${objdir}/${subdir}/${testfile}${EXEEXT} if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } { untested sepdebug.exp Index: src/gdb/testsuite/gdb.base/sepsymtab.exp =================================================================== --- src.orig/gdb/testsuite/gdb.base/sepsymtab.exp 2007-10-29 20:29:54.000000000 +0000 +++ src/gdb/testsuite/gdb.base/sepsymtab.exp 2007-10-29 20:30:38.000000000 +0000 @@ -23,7 +23,7 @@ if $tracelevel then { set testfile "sepsymtab" set srcfile ${testfile}.c -set binfile ${objdir}/${subdir}/${testfile} +set binfile ${objdir}/${subdir}/${testfile}${EXEEXT} if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \ executable {debug}] != "" } { --------------010506080908050206000704--