diff options
author | Michael Chastain <mec@google.com> | 2003-12-18 07:48:37 +0000 |
---|---|---|
committer | Michael Chastain <mec@google.com> | 2003-12-18 07:48:37 +0000 |
commit | eb4bbda805648bd95b91273ef502752a2c93c870 (patch) | |
tree | edcb78b7ba6e5b8679c5cc887ee88187bd75b601 | |
parent | 1ddd7f43f3a8fe8e380ed13394e222563d9a7eee (diff) | |
download | gdb-eb4bbda805648bd95b91273ef502752a2c93c870.zip gdb-eb4bbda805648bd95b91273ef502752a2c93c870.tar.gz gdb-eb4bbda805648bd95b91273ef502752a2c93c870.tar.bz2 |
2003-12-16 Michael Chastain <mec.gnu@mindspring.com>
* gdb.base/environ.exp: Handle compiling test case from multiple
source files.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/environ.exp | 15 |
2 files changed, 16 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index bdbce11..3c999e7 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2003-12-16 Michael Chastain <mec.gnu@mindspring.com> + * gdb.base/environ.exp: Handle compiling test case from multiple + source files. + +2003-12-16 Michael Chastain <mec.gnu@mindspring.com> + * gdb.base/structs.exp: Call gdb_exit as well as gdb_start. 2003-12-17 Jim Blandy <jimb@redhat.com> diff --git a/gdb/testsuite/gdb.base/environ.exp b/gdb/testsuite/gdb.base/environ.exp index 55ff0a0..b00052b 100644 --- a/gdb/testsuite/gdb.base/environ.exp +++ b/gdb/testsuite/gdb.base/environ.exp @@ -1,5 +1,4 @@ -# Copyright 1997, 1998, 1999 Free Software Foundation, Inc. - +# Copyright 1997, 1998, 1999, 2003 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -39,11 +38,19 @@ if ![istarget "hppa*-*-hpux*"] then { set testfile "break" set srcfile ${testfile}.c +set srcfile1 ${testfile}1.c set binfile ${objdir}/${subdir}/${testfile} +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug additional_flags=-w}] != "" } { + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." +} + +if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug additional_flags=-w}] != "" } { + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." +} -if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } { - gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." +if { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug additional_flags=-w}] != "" } { + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail." } gdb_exit |