Blame SOURCES/gdb-6.5-ia64-libunwind-leak-test.patch

b94e32
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
b94e32
From: Fedora GDB patches <invalid@email.com>
b94e32
Date: Fri, 27 Oct 2017 21:07:50 +0200
b94e32
Subject: gdb-6.5-ia64-libunwind-leak-test.patch
b94e32
b94e32
;; Test ia64 memory leaks of the code using libunwind.
b94e32
;;=fedoratest
b94e32
b94e32
diff --git a/gdb/testsuite/gdb.base/unwind-leak.c b/gdb/testsuite/gdb.base/unwind-leak.c
b94e32
new file mode 100644
b94e32
--- /dev/null
b94e32
+++ b/gdb/testsuite/gdb.base/unwind-leak.c
b94e32
@@ -0,0 +1,29 @@
b94e32
+/* This testcase is part of GDB, the GNU debugger.
b94e32
+
b94e32
+   Copyright 2007 Free Software Foundation, Inc.
b94e32
+
b94e32
+   This program is free software; you can redistribute it and/or modify
b94e32
+   it under the terms of the GNU General Public License as published by
b94e32
+   the Free Software Foundation; either version 2 of the License, or
b94e32
+   (at your option) any later version.
b94e32
+
b94e32
+   This program is distributed in the hope that it will be useful,
b94e32
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
b94e32
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b94e32
+   GNU General Public License for more details.
b94e32
+
b94e32
+   You should have received a copy of the GNU General Public License
b94e32
+   along with this program; if not, write to the Free Software
b94e32
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
b94e32
+
b94e32
+   Please email any bugs, comments, and/or additions to this file to:
b94e32
+   bug-gdb@prep.ai.mit.edu  */
b94e32
+
b94e32
+#include <unistd.h>
b94e32
+
b94e32
+int main()
b94e32
+{
b94e32
+  for (;;)
b94e32
+    alarm (0);
b94e32
+  return 0;
b94e32
+}
b94e32
diff --git a/gdb/testsuite/gdb.base/unwind-leak.exp b/gdb/testsuite/gdb.base/unwind-leak.exp
b94e32
new file mode 100644
b94e32
--- /dev/null
b94e32
+++ b/gdb/testsuite/gdb.base/unwind-leak.exp
b94e32
@@ -0,0 +1,88 @@
b94e32
+# Copyright 2007 Free Software Foundation, Inc.
b94e32
+
b94e32
+# This program is free software; you can redistribute it and/or modify
b94e32
+# it under the terms of the GNU General Public License as published by
b94e32
+# the Free Software Foundation; either version 2 of the License, or
b94e32
+# (at your option) any later version.
b94e32
+#
b94e32
+# This program is distributed in the hope that it will be useful,
b94e32
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
b94e32
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b94e32
+# GNU General Public License for more details.
b94e32
+#
b94e32
+# You should have received a copy of the GNU General Public License
b94e32
+# along with this program; if not, write to the Free Software
b94e32
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
b94e32
+
b94e32
+if {[use_gdb_stub]} {
b94e32
+    untested "skipping test because of use_gdb_stub"
b94e32
+    return -1
b94e32
+}
b94e32
+
b94e32
+set testfile unwind-leak
b94e32
+set srcfile ${testfile}.c
b94e32
+set shfile [standard_output_file ${testfile}-gdb.sh]
b94e32
+set binfile [standard_output_file ${testfile}]
b94e32
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b94e32
+    untested "Couldn't compile test program"
b94e32
+    return -1
b94e32
+}
b94e32
+
b94e32
+# Get things started.
b94e32
+
b94e32
+gdb_exit
b94e32
+gdb_start
b94e32
+gdb_reinitialize_dir $srcdir/$subdir
b94e32
+gdb_load ${binfile}
b94e32
+
b94e32
+set pid [exp_pid -i [board_info host fileid]]
b94e32
+
b94e32
+# For C programs, "start" should stop in main().
b94e32
+
b94e32
+gdb_test "start" \
b94e32
+         "main \\(\\) at .*$srcfile.*" \
b94e32
+         "start"
b94e32
+
b94e32
+set loc [gdb_get_line_number "alarm"]
b94e32
+gdb_breakpoint $loc
b94e32
+
b94e32
+proc memory_get {} {
b94e32
+    global pid
b94e32
+    set fd [open "/proc/$pid/statm"]
b94e32
+    gets $fd line
b94e32
+    close $fd
b94e32
+    # number of pages of data/stack
b94e32
+    scan $line "%*d%*d%*d%*d%*d%d" drs
b94e32
+    return $drs
b94e32
+}
b94e32
+
b94e32
+set cycles 100
b94e32
+# For 100 cycles it was 1308: from = 363 KB, to = 1671 KB
b94e32
+set permit_kb 100
b94e32
+verbose -log "cycles = $cycles, permit_kb = $permit_kb"
b94e32
+
b94e32
+set fail 0
b94e32
+set test "breakpoint stop/continue cycles"
b94e32
+for {set i $cycles} {$i > 0} {set i [expr {$i - 1}]} {
b94e32
+    gdb_test_multiple "continue" $test {
b94e32
+	-re "Breakpoint 2, main .*alarm .*.*${gdb_prompt} $" {
b94e32
+	}
b94e32
+	-re "Segmentation fault" {
b94e32
+	    fail $test
b94e32
+	    set i 0
b94e32
+	    set fail 1
b94e32
+	}
b94e32
+    }
b94e32
+    if ![info exists from] {
b94e32
+	set from [memory_get]
b94e32
+    }
b94e32
+}
b94e32
+set to [memory_get]
b94e32
+if {!$fail} {
b94e32
+    verbose -log "from = $from KB, to = $to KB"
b94e32
+    if {$from > 0 && $to > 10 && $to < $from + $permit_kb} {
b94e32
+	pass $test
b94e32
+    } else {
b94e32
+	fail $test
b94e32
+    }
b94e32
+}