From ae0d01ff0c8e4fcf419efb85a3f2e62c5f3a664c Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 30 Oct 2007 22:29:06 +0000 Subject: [PATCH] * gdb.base/dfp-test.exp: Fail gracefully if toolchain does not provide DFP support. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.base/dfp-test.exp | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 2f3a5d7c7c3..1b06b5af1e9 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-10-30 Ulrich Weigand + + * gdb.base/dfp-test.exp: Fail gracefully if toolchain does not + provide DFP support. + 2007-10-30 Daniel Jacobowitz * gdb.arch/altivec-abi.exp: Run multiple times for GCC on GNU/Linux. diff --git a/gdb/testsuite/gdb.base/dfp-test.exp b/gdb/testsuite/gdb.base/dfp-test.exp index 06c43d15f8b..c0dabb09a33 100644 --- a/gdb/testsuite/gdb.base/dfp-test.exp +++ b/gdb/testsuite/gdb.base/dfp-test.exp @@ -116,8 +116,10 @@ if $tracelevel { set testfile "dfp-test" set srcfile ${testfile}.c set binfile ${objdir}/${subdir}/${testfile} -if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug"] != "" } { - untested "Couldn't compile ${srcfile}" +# Try to compile the test case. If we can't, assume the +# toolchain does not yet provide DFP support and bail out. +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {quiet debug}] != "" } { + verbose "Skipping DFP tests." return -1 } -- 2.30.2