From: uweigand Date: Sun, 27 Sep 2009 20:40:23 +0000 (+0000) Subject: * gdb.base/pie-support.exp: Pass "quiet" flag to gdb_compile. X-Git-Tag: cgen-snapshot-20091101~490 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8d7427091ee48ba10c588d9d38a8638092496b3c;p=pf3gnuchains%2Fpf3gnuchains4x.git * gdb.base/pie-support.exp: Pass "quiet" flag to gdb_compile. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 555868a8f0..3d21fb1af0 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2009-09-27 Ulrich Weigand + + * gdb.base/pie-support.exp: Pass "quiet" flag to gdb_compile. + 2009-09-26 Pierre Muller 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 a1affb358d..7d118c0691 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 }