diff options
author | Jim Blandy <jimb@codesourcery.com> | 2005-05-02 20:57:30 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2005-05-02 20:57:30 +0000 |
commit | 5f33af9c4378445f9df9e4c29af544204688584c (patch) | |
tree | 558f8a1317985823cfcca064c79c6139610e3e64 | |
parent | 998b79524b9b83181305311a2dc9979283261d36 (diff) | |
download | gdb-5f33af9c4378445f9df9e4c29af544204688584c.tar.gz |
* gdb.base/auxv.exp: Call 'untested' and return -1 instead of
calling gdb_suppress_entire_file.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/auxv.exp | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index e133fd821f9..7ccee4640ff 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-05-02 Jim Blandy <jimb@redhat.com> + + * gdb.base/auxv.exp: Call 'untested' and return -1 instead of + calling gdb_suppress_entire_file. + 2005-04-30 Randolph Chung <tausq@debian.org> * gdb.threads/staticthreads.exp: Override signal to check for hppa. diff --git a/gdb/testsuite/gdb.base/auxv.exp b/gdb/testsuite/gdb.base/auxv.exp index cb064f560a5..5187dd9ed3f 100644 --- a/gdb/testsuite/gdb.base/auxv.exp +++ b/gdb/testsuite/gdb.base/auxv.exp @@ -37,7 +37,8 @@ set corefile ${objdir}/${subdir}/${testfile}.corefile set gcorefile ${objdir}/${subdir}/${testfile}.gcore 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." + untested "couldn't compile ${srcdir}/${subdir}/${srcfile}" + return -1 } # Use a fresh directory to confine the native core dumps. |