From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8983 invoked by alias); 17 Jul 2013 14:58:57 -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 8938 invoked by uid 89); 17 Jul 2013 14:58:56 -0000 X-Spam-SWARE-Status: No, score=-5.3 required=5.0 tests=AWL,BAYES_20,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RDNS_NONE,SPF_HELO_PASS,SPF_PASS,TW_BJ,TW_JC autolearn=no version=3.3.1 Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 17 Jul 2013 14:58:56 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6HEwm2G019388 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 17 Jul 2013 10:58:49 -0400 Received: from barimba.redhat.com (ovpn-113-128.phx2.redhat.com [10.3.113.128]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r6HEwl55012037; Wed, 17 Jul 2013 10:58:48 -0400 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 1/4] more uses of standard_output_file Date: Wed, 17 Jul 2013 14:59:00 -0000 Message-Id: <1374073124-23602-2-git-send-email-tromey@redhat.com> In-Reply-To: <1374073124-23602-1-git-send-email-tromey@redhat.com> References: <1374073124-23602-1-git-send-email-tromey@redhat.com> X-SW-Source: 2013-07/txt/msg00384.txt.bz2 A few spots in lib make output files, either in "." or in $objdir/$subdir. This patch changes these spots to use standard_output_file. This help the parallelization project. * lib/gdb.exp (build_id_debug_filename_get): Use standard_output_file. * lib/prelink-support.exp (section_get) (build_executable_own_libs): Use standard_output_file. --- gdb/testsuite/lib/gdb.exp | 2 +- gdb/testsuite/lib/prelink-support.exp | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 376aacc..1ca4354 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -3873,7 +3873,7 @@ proc gdb_skip_xml_test { } { # converted to the form: .build-id/ab/cdef1234...89.debug # Return "" if no build-id found. proc build_id_debug_filename_get { exec } { - set tmp "${exec}-tmp" + set tmp [standard_output_file "${exec}-tmp"] set objcopy_program [transform objcopy] set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $exec $tmp" output] diff --git a/gdb/testsuite/lib/prelink-support.exp b/gdb/testsuite/lib/prelink-support.exp index ef99783..f7d813f 100644 --- a/gdb/testsuite/lib/prelink-support.exp +++ b/gdb/testsuite/lib/prelink-support.exp @@ -18,9 +18,8 @@ # for sections ".interp" or ".gnu_debuglink". proc section_get {exec section} { - global objdir global subdir - set tmp "${objdir}/${subdir}/section_get.tmp" + set tmp [standard_output_file section_get.tmp] set objcopy_program [transform objcopy] set command "exec $objcopy_program -O binary --set-section-flags $section=A --change-section-address $section=0 -j $section $exec $tmp" @@ -117,12 +116,12 @@ proc file_copy {src dest} { # with -Wl,-soname,NAME.so are not copied. proc build_executable_own_libs {testname executable sources options {interp ""} {dir ""}} { - global objdir subdir + global subdir if {[build_executable $testname $executable $sources $options] == -1} { return "" } - set binfile ${objdir}/${subdir}/${executable} + set binfile [standard_output_file ${executable}] set command "ldd $binfile" set test "ldd $executable" -- 1.8.1.4