diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-09-27 20:40:23 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-09-27 20:40:23 +0000 |
commit | d5142e3b6257cd61f3b6b49f1639621b623d256a (patch) | |
tree | 4473844be56bbba3ba3c8a4e74a6f704c1543dc6 /gdb | |
parent | eceda120cd420689231483412fdebc32158d79c7 (diff) | |
download | gdb-d5142e3b6257cd61f3b6b49f1639621b623d256a.zip gdb-d5142e3b6257cd61f3b6b49f1639621b623d256a.tar.gz gdb-d5142e3b6257cd61f3b6b49f1639621b623d256a.tar.bz2 |
* gdb.base/pie-support.exp: Pass "quiet" flag to gdb_compile.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/pie-support.exp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 555868a..3d21fb1 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2009-09-27 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> + + * gdb.base/pie-support.exp: Pass "quiet" flag to gdb_compile. + 2009-09-26 Pierre Muller <muller@ics.u-strasbg.fr> New test for two watchpoints, with disabling of diff --git a/gdb/testsuite/gdb.base/pie-support.exp b/gdb/testsuite/gdb.base/pie-support.exp index a1affb35..7d118c0 100644 --- a/gdb/testsuite/gdb.base/pie-support.exp +++ b/gdb/testsuite/gdb.base/pie-support.exp @@ -18,11 +18,11 @@ set srcfile ${testfile}.c set objfile ${objdir}/${subdir}/${testfile}.o set binfile ${objdir}/${subdir}/${testfile} -if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {debug additional_flags=-fpie}] != "" } { +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {quiet debug additional_flags=-fpie}] != "" } { untested "Couldn't compile test PIE object file." return -1 } -if { [gdb_compile "${objfile}" "${binfile}" executable {debug additional_flags=-pie}] != "" } { +if { [gdb_compile "${objfile}" "${binfile}" executable {quiet debug additional_flags=-pie}] != "" } { untested "Couldn't compile test PIE binary." return -1 } |