From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25809 invoked by alias); 6 Feb 2014 21:31:11 -0000 Mailing-List: contact archer-commits-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: Received: (qmail 25789 invoked by uid 9674); 6 Feb 2014 21:31:11 -0000 Date: Thu, 06 Feb 2014 21:31:00 -0000 Message-ID: <20140206213111.25762.qmail@sourceware.org> From: jkratoch@sourceware.org To: archer-commits@sourceware.org Subject: [SCM] jankratochvil/vla: Testsuite fixes for standard_output_file. X-Git-Refname: refs/heads/jankratochvil/vla X-Git-Reftype: branch X-Git-Oldrev: 4b3ee0deae1810b5178e776b7ec2d4fb1627c22f X-Git-Newrev: a224c5615c08bac5630a4bb4265a94b0c4aff6f9 X-SW-Source: 2014-q1/txt/msg00002.txt.bz2 List-Id: The branch, jankratochvil/vla has been updated via a224c5615c08bac5630a4bb4265a94b0c4aff6f9 (commit) from 4b3ee0deae1810b5178e776b7ec2d4fb1627c22f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit a224c5615c08bac5630a4bb4265a94b0c4aff6f9 Author: Jan Kratochvil Date: Thu Feb 6 22:30:52 2014 +0100 Testsuite fixes for standard_output_file. ----------------------------------------------------------------------- Summary of changes: .../gdb.base/internal-var-field-address.exp | 2 +- .../gdb.dwarf2/dw2-struct-member-data-location.exp | 2 +- gdb/testsuite/gdb.dwarf2/dw2-subrange-no-type.exp | 2 +- gdb/testsuite/gdb.fortran/dynamic-other-frame.exp | 4 ++-- gdb/testsuite/gdb.mi/mi2-var-stale-type.exp | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) First 500 lines of diff: diff --git a/gdb/testsuite/gdb.base/internal-var-field-address.exp b/gdb/testsuite/gdb.base/internal-var-field-address.exp index 6d82e73..33c9e94 100644 --- a/gdb/testsuite/gdb.base/internal-var-field-address.exp +++ b/gdb/testsuite/gdb.base/internal-var-field-address.exp @@ -15,7 +15,7 @@ set test internal-var-field-address set binfile ${test}.x -if { [gdb_compile "${srcdir}/${subdir}/${test}.c" "${objdir}/${subdir}/${binfile}" object {debug}] != "" } { +if { [gdb_compile "${srcdir}/${subdir}/${test}.c" "[standard_output_file ${binfile}]" object {debug}] != "" } { untested "Couldn't compile test program" return -1 } diff --git a/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp index c41151c..bc35209 100644 --- a/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp +++ b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp @@ -28,7 +28,7 @@ set testfile "dw2-struct-member-data-location" set srcfile ${testfile}.S set binfile ${testfile}.x -if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objdir}/${subdir}/${binfile}" object {nodebug}] != "" } { +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "[standard_output_file ${binfile}]" object {nodebug}] != "" } { return -1 } diff --git a/gdb/testsuite/gdb.dwarf2/dw2-subrange-no-type.exp b/gdb/testsuite/gdb.dwarf2/dw2-subrange-no-type.exp index a13e346..cec673c 100644 --- a/gdb/testsuite/gdb.dwarf2/dw2-subrange-no-type.exp +++ b/gdb/testsuite/gdb.dwarf2/dw2-subrange-no-type.exp @@ -27,7 +27,7 @@ if {![dwarf2_support]} { set testfile dw2-subrange-no-type set srcfile ${testfile}.S set executable ${testfile}.x -set binfile ${objdir}/${subdir}/${executable} +set binfile [standard_output_file ${executable}] if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" object {}] != "" } { return -1 diff --git a/gdb/testsuite/gdb.fortran/dynamic-other-frame.exp b/gdb/testsuite/gdb.fortran/dynamic-other-frame.exp index fa41b80..e5a82ee 100644 --- a/gdb/testsuite/gdb.fortran/dynamic-other-frame.exp +++ b/gdb/testsuite/gdb.fortran/dynamic-other-frame.exp @@ -17,9 +17,9 @@ set testfile "dynamic-other-frame" set srcfile1 ${testfile}.f90 set srcfile2 ${testfile}-stub.f90 -set objfile2 ${objdir}/${subdir}/${testfile}-stub.o +set objfile2 [standard_output_file ${testfile}-stub.o] set executable ${testfile} -set binfile ${objdir}/${subdir}/${executable} +set binfile [standard_output_file ${executable}] if { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${objfile2}" object {f90}] != "" || [gdb_compile "${srcdir}/${subdir}/${srcfile1} ${objfile2}" "${binfile}" executable {debug f90}] != "" } { diff --git a/gdb/testsuite/gdb.mi/mi2-var-stale-type.exp b/gdb/testsuite/gdb.mi/mi2-var-stale-type.exp index 99b6cc7..88326c0 100644 --- a/gdb/testsuite/gdb.mi/mi2-var-stale-type.exp +++ b/gdb/testsuite/gdb.mi/mi2-var-stale-type.exp @@ -23,7 +23,7 @@ if [mi_gdb_start] { set testfile "mi2-var-stale-type" set srcfile ${testfile}.c -set binfile ${objdir}/${subdir}/${testfile} +set binfile [standard_output_file ${testfile}] if {[build_executable ${testfile}.exp $testfile $srcfile] == -1} { return -1 } hooks/post-receive -- Repository for Project Archer.