X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Ftestsuite%2Fgdb.base%2Fhuge.exp;h=509e3ec22a5b1adb9d501e2381648372246483e5;hb=bf9e4d0c1f88710c2a389bf4b1bdf1d0d83fa7f4;hp=733ddeee7a34f73a02b6c2d74c41831c5a3a04ef;hpb=01f0fe5e0450edf168c1f612feb93cf588e4e7ea;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/testsuite/gdb.base/huge.exp b/gdb/testsuite/gdb.base/huge.exp index 733ddeee7a..509e3ec22a 100644 --- a/gdb/testsuite/gdb.base/huge.exp +++ b/gdb/testsuite/gdb.base/huge.exp @@ -1,30 +1,20 @@ -# Copyright 2001, 2004 Free Software Foundation, Inc. +# Copyright 2001-2013 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# Please email any bugs, comments, and/or additions to this file to: -# bug-gdb@prep.ai.mit.edu +# along with this program. If not, see . # This file was written by Michael Snyder (msnyder@redhat.com) -if $tracelevel then { - strace $tracelevel -} - -set prms_id 0 -set bug_id 0 # Define if you want to skip this test # (could be very time-consuming on remote targets with slow connection). @@ -36,8 +26,15 @@ if [target_info exists gdb,skip_huge_test] { set testfile "huge" set srcfile ${testfile}.c set binfile ${objdir}/${subdir}/${testfile} -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." + +for { set size [expr 2 * 1024 * 1024] } { $size > 10 } { set size [expr $size / 2] } { + if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \ + executable [list debug "additional_flags=-DCRASH_GDB=$size"]] \ + == "" } break +} +if { $size < 10 } { + untested huge.exp + return -1 } # Start with a fresh gdb. @@ -47,11 +44,14 @@ gdb_start gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binfile} +set prev_timeout $timeout set timeout 30 if { ! [ runto_main ] } then { - gdb_suppress_entire_file "Run to main failed, so all tests in this file will automatically fail." + untested huge.exp + return -1 } gdb_test "print a" ".1 = .0 .repeats \[0123456789\]+ times.." "print a very large data object" +set timeout $prev_timeout