Blame SOURCES/gdb-6.5-gcore-buffer-limit-test.patch

861f93
diff -u -X /home/jkratoch/.diffi.list -ruNp gdb-6.5/gdb/testsuite/gdb.base/gcore-excessive-memory.c gdb-6.5-unknown/gdb/testsuite/gdb.base/gcore-excessive-memory.c
861f93
--- gdb-6.5/gdb/testsuite/gdb.base/gcore-excessive-memory.c	1970-01-01 01:00:00.000000000 +0100
861f93
+++ gdb-6.5-unknown/gdb/testsuite/gdb.base/gcore-excessive-memory.c	2008-01-08 11:25:45.000000000 +0100
861f93
@@ -0,0 +1,37 @@
861f93
+/* This testcase is part of GDB, the GNU debugger.
861f93
+
861f93
+   Copyright 2008 Free Software Foundation, Inc.
861f93
+
861f93
+   This program is free software; you can redistribute it and/or modify
861f93
+   it under the terms of the GNU General Public License as published by
861f93
+   the Free Software Foundation; either version 2 of the License, or
861f93
+   (at your option) any later version.
861f93
+
861f93
+   This program is distributed in the hope that it will be useful,
861f93
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
861f93
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
861f93
+   GNU General Public License for more details.
861f93
+ 
861f93
+   You should have received a copy of the GNU General Public License
861f93
+   along with this program; if not, write to the Free Software
861f93
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
861f93
+
861f93
+   Please email any bugs, comments, and/or additions to this file to:
861f93
+   bug-gdb@prep.ai.mit.edu  */
861f93
+
861f93
+#include <unistd.h>
861f93
+#include <stdlib.h>
861f93
+
861f93
+#define MEGS 64
861f93
+
861f93
+int main()
861f93
+{
861f93
+  void *mem;
861f93
+  
861f93
+  mem = malloc (MEGS * 1024ULL * 1024ULL);
861f93
+
861f93
+  for (;;)
861f93
+    sleep (1);
861f93
+
861f93
+  return 0;
861f93
+}
861f93
diff -u -X /home/jkratoch/.diffi.list -ruNp gdb-6.5/gdb/testsuite/gdb.base/gcore-excessive-memory.exp gdb-6.5-unknown/gdb/testsuite/gdb.base/gcore-excessive-memory.exp
861f93
--- gdb-6.5/gdb/testsuite/gdb.base/gcore-excessive-memory.exp	1970-01-01 01:00:00.000000000 +0100
861f93
+++ gdb-6.5-unknown/gdb/testsuite/gdb.base/gcore-excessive-memory.exp	2008-01-08 11:47:32.000000000 +0100
861f93
@@ -0,0 +1,94 @@
861f93
+# Copyright 2008 Free Software Foundation, Inc.
861f93
+
861f93
+# This program is free software; you can redistribute it and/or modify
861f93
+# it under the terms of the GNU General Public License as published by
861f93
+# the Free Software Foundation; either version 2 of the License, or
861f93
+# (at your option) any later version.
861f93
+# 
861f93
+# This program is distributed in the hope that it will be useful,
861f93
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
861f93
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
861f93
+# GNU General Public License for more details.
861f93
+# 
861f93
+# You should have received a copy of the GNU General Public License
861f93
+# along with this program; if not, write to the Free Software
861f93
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
861f93
+
861f93
+set testfile gcore-excessive-memory
861f93
+set srcfile ${testfile}.c
861f93
+set shfile ${objdir}/${subdir}/${testfile}-gdb.sh
861f93
+set corefile ${objdir}/${subdir}/${testfile}.core
861f93
+set binfile ${objdir}/${subdir}/${testfile}
861f93
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
861f93
+    untested "Couldn't compile test program"
861f93
+    return -1
861f93
+}
861f93
+
861f93
+set f [open "|getconf PAGESIZE" "r"]
861f93
+gets $f pagesize
861f93
+close $f
861f93
+
861f93
+set pid_of_bin [eval exec $binfile &]
861f93
+sleep 2
861f93
+
861f93
+# Get things started.
861f93
+
861f93
+gdb_exit
861f93
+gdb_start
861f93
+gdb_reinitialize_dir $srcdir/$subdir
861f93
+gdb_load ${binfile}
861f93
+
861f93
+set pid_of_gdb [exp_pid -i [board_info host fileid]]
861f93
+
861f93
+gdb_test "attach $pid_of_bin" "Attaching to .*" "attach"
861f93
+gdb_test "up 99" "in main .*" "verify we can get to main"
861f93
+
861f93
+proc memory_v_pages_get {} {
861f93
+    global pid_of_gdb pagesize
861f93
+    set fd [open "/proc/$pid_of_gdb/statm"]
861f93
+    gets $fd line
861f93
+    close $fd
861f93
+    # number of pages of virtual memory
861f93
+    scan $line "%d" drs
861f93
+    return $drs
861f93
+}
861f93
+
861f93
+set pages_found [memory_v_pages_get]
861f93
+
861f93
+# It must be definitely less than `MEGS' of `gcore-excessive-memory.c'.
861f93
+set mb_gcore_reserve 4
861f93
+verbose -log "pages_found = $pages_found, mb_gcore_reserve = $mb_gcore_reserve"
861f93
+set kb_found [expr $pages_found * $pagesize / 1024]
861f93
+set kb_permit [expr $kb_found + 1 * 1024 + $mb_gcore_reserve * 1024]
861f93
+verbose -log "kb_found = $kb_found, kb_permit = $kb_permit"
861f93
+
861f93
+# Create the ulimit wrapper.
861f93
+set f [open $shfile "w"]
861f93
+puts $f "#! /bin/sh"
861f93
+puts $f "ulimit -v $kb_permit"
861f93
+puts $f "exec $GDB \"\$@\""
861f93
+close $f
861f93
+remote_exec host "chmod +x $shfile"
861f93
+
861f93
+gdb_exit
861f93
+set GDBold $GDB
861f93
+set GDB "$shfile"
861f93
+gdb_start
861f93
+set GDB $GDBold
861f93
+
861f93
+gdb_reinitialize_dir $srcdir/$subdir
861f93
+gdb_load ${binfile}
861f93
+
861f93
+set pid_of_gdb [exp_pid -i [board_info host fileid]]
861f93
+
861f93
+gdb_test "attach $pid_of_bin" "Attaching to .*" "attach"
861f93
+gdb_test "up 99" "in main .*" "verify we can get to main"
861f93
+
861f93
+verbose -log "kb_found before gcore = [expr [memory_v_pages_get] * $pagesize / 1024]"
861f93
+
861f93
+gdb_test "gcore $corefile" "Saved corefile \[^\n\r\]*" "Save the core file"
861f93
+
861f93
+verbose -log "kb_found after gcore = [expr [memory_v_pages_get] * $pagesize / 1024]"
861f93
+
861f93
+# Cleanup.
861f93
+exec kill -9 $pid_of_bin