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

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