diff options
author | Joel Brobecker <brobecker@gnat.com> | 2004-09-16 05:23:13 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2004-09-16 05:23:13 +0000 |
commit | c3693612b33bae02e99c9c0099c0d9cf4c679792 (patch) | |
tree | e66d55c6aa650fbac23ee098fc873749edfa3e3f /gdb | |
parent | af7d56e46f561ccfa24d45b788351c90db4d5aea (diff) | |
download | gdb-c3693612b33bae02e99c9c0099c0d9cf4c679792.tar.gz |
* gdb.base/bigcore.exp: Deactivate on IRIX targets.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/bigcore.exp | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index aa6abb45d22..6e7efd7870c 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-09-15 Joel Brobecker <brobecker@gnat.com> + + * gdb.base/bigcore.exp: Deactivate on IRIX targets. + 2004-09-14 Michael Chastain <mec.gnu@mindspring.com> * gdb.threads/killed.c: Include <stdlib.h>. diff --git a/gdb/testsuite/gdb.base/bigcore.exp b/gdb/testsuite/gdb.base/bigcore.exp index b7201365361..0a55eae6cba 100644 --- a/gdb/testsuite/gdb.base/bigcore.exp +++ b/gdb/testsuite/gdb.base/bigcore.exp @@ -49,6 +49,13 @@ if { [istarget "*-*-*bsd*"] return } +# This testcase causes too much stress (in terms of memory usage) +# on certain systems... +if { [istarget "*-*-*irix*"] } { + untested "Testcase too stressful for this system" + return +} + set testfile "bigcore" set srcfile ${testfile}.c set binfile ${objdir}/${subdir}/${testfile} |