From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30437 invoked by alias); 24 May 2013 14:05:52 -0000 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 Received: (qmail 30423 invoked by uid 89); 24 May 2013 14:05:52 -0000 X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED autolearn=ham version=3.3.1 Received: from gbenson.demon.co.uk (HELO blade.nx) (80.177.220.214) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 24 May 2013 14:05:50 +0000 Received: by blade.nx (Postfix, from userid 500) id 82FD0264614; Fri, 24 May 2013 15:05:47 +0100 (BST) Date: Fri, 24 May 2013 14:05:00 -0000 From: Gary Benson To: Jan Kratochvil Cc: gdb-patches@sourceware.org Subject: [obv] Fix excessive backslashes in testsuite Message-ID: <20130524140547.GA12363@blade.nx> Mail-Followup-To: Jan Kratochvil , gdb-patches@sourceware.org References: <20130516144340.GA2105@blade.nx> <20130516144857.GH2105@blade.nx> <20130519134509.GA5625@host2.jankratochvil.net> <20130524083837.GD4602@blade.nx> <20130524085849.GA4374@host2.jankratochvil.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline In-Reply-To: <20130524085849.GA4374@host2.jankratochvil.net> X-Virus-Found: No X-SW-Source: 2013-05/txt/msg00927.txt.bz2 --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 340 Jan Kratochvil wrote: > On Fri, 24 May 2013 10:38:37 +0200, Gary Benson wrote: > > The excessive backslashes were copied and pasted from somewhere. > > "fgrep -r '\=' gdb/testsuite" reveals three existing files with > > it. Would you like me to commit an obvious fix for these? > > Yes. Committed. Thanks, Gary -- http://gbenson.net/ --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch Content-length: 2808 Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/testsuite/ChangeLog,v retrieving revision 1.3679 diff -u -r1.3679 ChangeLog --- ChangeLog 24 May 2013 12:27:39 -0000 1.3679 +++ ChangeLog 24 May 2013 14:00:55 -0000 @@ -1,3 +1,12 @@ +2013-05-24 Gary Benson + + * gdb.base/solib-disc.exp (exec_opts): Remove unnecesary + backslash. + * gdb.base/unload.exp (exec_opts): Remove two unnecessary + backslashes. + * gdb.base/watchpoint-solib.exp (exec_opts): Remove unnecesary + backslash. + 2013-05-24 Yao Qi * gdb.trace/tfile.exp: Test inferior and thread. Index: gdb.base/solib-disc.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/solib-disc.exp,v retrieving revision 1.13 diff -u -r1.13 solib-disc.exp --- gdb.base/solib-disc.exp 1 Jan 2013 06:33:26 -0000 1.13 +++ gdb.base/solib-disc.exp 24 May 2013 14:00:56 -0000 @@ -42,7 +42,7 @@ return -1 } -set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${lib_dlopen}\"] +set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME=\"${lib_dlopen}\"] if { [gdb_compile_shlib $libsrc $libobj {debug}] != "" || [gdb_compile $execsrc ${binfile} executable $exec_opts] != "" } { Index: gdb.base/unload.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/unload.exp,v retrieving revision 1.26 diff -u -r1.26 unload.exp --- gdb.base/unload.exp 1 Jan 2013 06:33:26 -0000 1.26 +++ gdb.base/unload.exp 24 May 2013 14:00:56 -0000 @@ -47,7 +47,7 @@ } set lib_opts debug -set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${lib_dlopen}\" additional_flags=-DSHLIB_NAME2\=\"${lib_dlopen2}\"] +set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME=\"${lib_dlopen}\" additional_flags=-DSHLIB_NAME2=\"${lib_dlopen2}\"] if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != "" || [gdb_compile_shlib $libsrc2 $lib_sl2 $lib_opts] != "" Index: gdb.base/watchpoint-solib.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/watchpoint-solib.exp,v retrieving revision 1.14 diff -u -r1.14 watchpoint-solib.exp --- gdb.base/watchpoint-solib.exp 1 Jan 2013 06:33:26 -0000 1.14 +++ gdb.base/watchpoint-solib.exp 24 May 2013 14:00:56 -0000 @@ -38,7 +38,7 @@ } set lib_opts debug -set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${lib_dlopen}\"] +set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME=\"${lib_dlopen}\"] if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != "" || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} { --XsQoSWH+UP9D9v3l--