* gdb.base/dfp-test.exp: Fail gracefully if toolchain does not
authorUlrich Weigand <uweigand@de.ibm.com>
Tue, 30 Oct 2007 22:29:06 +0000 (22:29 +0000)
committerUlrich Weigand <uweigand@de.ibm.com>
Tue, 30 Oct 2007 22:29:06 +0000 (22:29 +0000)
provide DFP support.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/dfp-test.exp

index 2f3a5d7c7c31bab638c804de22b7f8f46dc6ef86..1b06b5af1e90690634da21ddd28d18332fc489ae 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-30  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
+
+       * gdb.base/dfp-test.exp: Fail gracefully if toolchain does not
+       provide DFP support.
+
 2007-10-30  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * gdb.arch/altivec-abi.exp: Run multiple times for GCC on GNU/Linux.
index 06c43d15f8b05abbb3559e6c13686efd4ca173fe..c0dabb09a330980cb57da1dfdd1c79b3464e4500 100644 (file)
@@ -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
 }