Blame SOURCES/gdb-6.3-inferior-notification-20050721.patch

475228
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
475228
From: Jeff Johnston <jjohnstn@redhat.com>
475228
Date: Fri, 27 Oct 2017 21:07:50 +0200
475228
Subject: gdb-6.3-inferior-notification-20050721.patch
475228
475228
;; Notify observers that the inferior has been created
475228
;;=fedoratest
475228
475228
2005-07-21  Jeff Johnston  <jjohnstn@redhat.com>
475228
475228
	* gdb.base/attach-32.exp: New test for attaching in 32-bit
475228
	mode on 64-bit systems.
475228
	* gdb.base/attach-32.c: Ditto.
475228
	* gdb.base/attach-32b.c: Ditto.
475228
475228
2007-12-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
475228
475228
	* gdb.base/attach-32.exp: Fix forgotten $GDBFLAGS as set.
475228
475228
diff --git a/gdb/testsuite/gdb.base/attach-32.c b/gdb/testsuite/gdb.base/attach-32.c
475228
new file mode 100644
475228
--- /dev/null
475228
+++ b/gdb/testsuite/gdb.base/attach-32.c
475228
@@ -0,0 +1,20 @@
475228
+/* This program is intended to be started outside of gdb, and then
475228
+   attached to by gdb.  Thus, it simply spins in a loop.  The loop
475228
+   is exited when & if the variable 'should_exit' is non-zero.  (It
475228
+   is initialized to zero in this program, so the loop will never
475228
+   exit unless/until gdb sets the variable to non-zero.)
475228
+   */
475228
+#include <stdio.h>
475228
+
475228
+int  should_exit = 0;
475228
+
475228
+int main ()
475228
+{
475228
+  int  local_i = 0;
475228
+
475228
+  while (! should_exit)
475228
+    {
475228
+      local_i++;
475228
+    }
475228
+  return 0;
475228
+}
475228
diff --git a/gdb/testsuite/gdb.base/attach-32.exp b/gdb/testsuite/gdb.base/attach-32.exp
475228
new file mode 100644
475228
--- /dev/null
475228
+++ b/gdb/testsuite/gdb.base/attach-32.exp
475228
@@ -0,0 +1,245 @@
475228
+# Copyright 2005 Free Software Foundation, Inc.
475228
+
475228
+# This program is free software; you can redistribute it and/or modify
475228
+# it under the terms of the GNU General Public License as published by
475228
+# the Free Software Foundation; either version 2 of the License, or
475228
+# (at your option) any later version.
475228
+# 
475228
+# This program is distributed in the hope that it will be useful,
475228
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
475228
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
475228
+# GNU General Public License for more details.
475228
+# 
475228
+# You should have received a copy of the GNU General Public License
475228
+# along with this program; if not, write to the Free Software
475228
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
475228
+#
475228
+# This test was based on attach.exp and modified for 32/64 bit Linux systems. */
475228
+
475228
+# On HP-UX 11.0, this test is causing a process running the program
475228
+# "attach" to be left around spinning.  Until we figure out why, I am
475228
+# commenting out the test to avoid polluting tiamat (our 11.0 nightly
475228
+# test machine) with these processes. RT
475228
+#
475228
+# Setting the magic bit in the target app should work.  I added a
475228
+# "kill", and also a test for the R3 register warning.  JB
475228
+if { ![istarget "x86_64*-*linux*"] 
475228
+     && ![istarget "powerpc64*-*linux*"]} {
475228
+    return 0
475228
+}
475228
+
475228
+# are we on a target board
475228
+if [is_remote target] then {
475228
+    return 0
475228
+}
475228
+
475228
+set testfile "attach-32"
475228
+set srcfile  ${testfile}.c
475228
+set srcfile2 ${testfile}b.c
475228
+set binfile  [standard_output_file ${testfile}]
475228
+set binfile2 [standard_output_file ${testfile}b]
475228
+set escapedbinfile  [string_to_regexp [standard_output_file ${testfile}]]
475228
+
475228
+#execute_anywhere "rm -f ${binfile} ${binfile2}"
475228
+remote_exec build "rm -f ${binfile} ${binfile2}"
475228
+# For debugging this test
475228
+#
475228
+#log_user 1
475228
+
475228
+# build the first test case
475228
+#
475228
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "additional_flags=-m32"]] != "" } {
475228
+    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
475228
+}
475228
+
475228
+# Build the in-system-call test
475228
+
475228
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" executable [list debug "additional_flags=-m32"]] != "" } {
475228
+    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
475228
+}
475228
+
475228
+if [get_compiler_info ${binfile}] {
475228
+    return -1
475228
+}
475228
+
475228
+proc do_attach_tests {} {
475228
+    global gdb_prompt
475228
+    global binfile
475228
+    global escapedbinfile
475228
+    global srcfile
475228
+    global testfile
475228
+    global objdir
475228
+    global subdir
475228
+    global timeout
475228
+    global testpid
475228
+    
475228
+    # Verify that we can "see" the variable "should_exit" in the
475228
+    # program, and that it is zero.
475228
+   
475228
+    gdb_test "print should_exit" " = 0" "after attach-32, print should_exit"
475228
+
475228
+    # Verify that we can modify the variable "should_exit" in the
475228
+    # program.
475228
+
475228
+    gdb_test "set should_exit=1" "" "after attach-32, set should_exit"
475228
+
475228
+    # Verify that the modification really happened.
475228
+
475228
+    send_gdb "tbreak 19\n"
475228
+    gdb_expect {
475228
+	-re "reakpoint .*at.*$srcfile, line 19.*$gdb_prompt $" {
475228
+	    pass "after attach-32, set tbreak postloop"
475228
+	}
475228
+	-re "$gdb_prompt $" {
475228
+	    fail "after attach-32, set tbreak postloop"
475228
+	}
475228
+	timeout {
475228
+	    fail "(timeout) after attach-32, set tbreak postloop"
475228
+	}
475228
+    }
475228
+    send_gdb "continue\n"
475228
+    gdb_expect {
475228
+	-re "main.*at.*$srcfile:19.*$gdb_prompt $" {
475228
+	    pass "after attach-32, reach tbreak postloop"
475228
+	}
475228
+	-re "$gdb_prompt $" {
475228
+	    fail "after attach-32, reach tbreak postloop"
475228
+	}
475228
+	timeout {
475228
+	    fail "(timeout) after attach-32, reach tbreak postloop"
475228
+	}
475228
+    }
475228
+
475228
+    # Allow the test process to exit, to cleanup after ourselves.
475228
+
475228
+    gdb_test "continue" {\[Inferior .* exited normally\]} "after attach-32, exit"
475228
+
475228
+    # Make sure we don't leave a process around to confuse
475228
+    # the next test run (and prevent the compile by keeping
475228
+    # the text file busy), in case the "set should_exit" didn't
475228
+    # work.
475228
+   
475228
+    remote_exec build "kill -9 ${testpid}"
475228
+
475228
+    # Start the program running and then wait for a bit, to be sure
475228
+    # that it can be attached to.
475228
+   
475228
+    set testpid [eval exec $binfile &]
475228
+    exec sleep 2
475228
+    if { [istarget "*-*-cygwin*"] } {
475228
+	# testpid is the Cygwin PID, GDB uses the Windows PID, which might be
475228
+	# different due to the way fork/exec works.
475228
+	set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
475228
+    }
475228
+
475228
+    # Verify that we can attach to the process, and find its a.out
475228
+    # when we're cd'd to some directory that doesn't contain the
475228
+    # a.out.  (We use the source path set by the "dir" command.)
475228
+    
475228
+    gdb_test "dir ${objdir}/${subdir}" "Source directories searched: .*" \
475228
+	"set source path"
475228
+
475228
+    gdb_test "cd /tmp" "Working directory /tmp." \
475228
+	"cd away from process working directory"
475228
+
475228
+    # Explicitly flush out any knowledge of the previous attachment.
475228
+
475228
+    set test "before attach-32-3, flush symbols"
475228
+    gdb_test_multiple "symbol" "$test" {
475228
+	-re "Discard symbol table from.*y or n. $" {
475228
+	    gdb_test "y" "No symbol file now." \
475228
+		"$test"
475228
+	}
475228
+	-re "No symbol file now.*$gdb_prompt $" {
475228
+	    pass "$test"
475228
+	}
475228
+    }
475228
+
475228
+    gdb_test "exec" "No executable file now." \
475228
+	"before attach-32-3, flush exec"
475228
+
475228
+    gdb_test "attach $testpid" \
475228
+	"Attaching to process $testpid.*Reading symbols from $escapedbinfile.*main.*at .*" \
475228
+	"attach-32 when process' a.out not in cwd"
475228
+
475228
+    set test "after attach-32-3, exit"
475228
+    gdb_test_multiple "kill" "$test" {
475228
+	-re "Kill the program being debugged.*y or n. $" {
475228
+	    gdb_test "y" "" "$test"
475228
+	}
475228
+    }
475228
+    
475228
+    # Another "don't leave a process around"
475228
+    remote_exec build "kill -9 ${testpid}"
475228
+}
475228
+
475228
+proc do_call_attach_tests {} {
475228
+    global gdb_prompt
475228
+    global binfile2
475228
+    global testpid
475228
+    
475228
+    # See if other registers are problems
475228
+    
475228
+    set test "info other register"
475228
+    gdb_test_multiple "i r r3" "$test" {
475228
+	-re "warning: reading register.*$gdb_prompt $" {
475228
+	    fail "$test"
475228
+	}
475228
+	-re "r3.*$gdb_prompt $" {
475228
+	    pass "$test"
475228
+	}
475228
+    }
475228
+
475228
+    # Get rid of the process
475228
+    
475228
+    gdb_test "p should_exit = 1"
475228
+    gdb_test "c" {\[Inferior .* exited normally\]}
475228
+   
475228
+    # Be paranoid
475228
+   
475228
+    remote_exec build "kill -9 ${testpid}"
475228
+}
475228
+
475228
+
475228
+# Start with a fresh gdb
475228
+
475228
+gdb_exit
475228
+set testpid [eval exec $binfile &]
475228
+exec sleep 3
475228
+if { [istarget "*-*-cygwin*"] } {
475228
+    # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
475228
+    # different due to the way fork/exec works.
475228
+    set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
475228
+}
475228
+
475228
+set GDBFLAGS_orig $GDBFLAGS
475228
+set GDBFLAGS "--pid=$testpid"
475228
+gdb_start
475228
+set GDBFLAGS $GDBFLAGS_orig
475228
+
475228
+gdb_reinitialize_dir $srcdir/$subdir
475228
+
475228
+# This is a test of gdb's ability to attach to a running process.
475228
+
475228
+do_attach_tests
475228
+
475228
+# Test attaching when the target is inside a system call
475228
+
475228
+gdb_exit
475228
+set testpid [eval exec $binfile2 &]
475228
+exec sleep 3
475228
+if { [istarget "*-*-cygwin*"] } {
475228
+    # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
475228
+    # different due to the way fork/exec works.
475228
+    set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
475228
+}
475228
+
475228
+set GDBFLAGS_orig $GDBFLAGS
475228
+set GDBFLAGS "--pid=$testpid"
475228
+gdb_start
475228
+set GDBFLAGS $GDBFLAGS_orig
475228
+
475228
+gdb_reinitialize_dir $srcdir/$subdir
475228
+do_call_attach_tests
475228
+
475228
+return 0
475228
diff --git a/gdb/testsuite/gdb.base/attach-32b.c b/gdb/testsuite/gdb.base/attach-32b.c
475228
new file mode 100644
475228
--- /dev/null
475228
+++ b/gdb/testsuite/gdb.base/attach-32b.c
475228
@@ -0,0 +1,24 @@
475228
+/* This program is intended to be started outside of gdb, and then
475228
+   attached to by gdb.  Thus, it simply spins in a loop.  The loop
475228
+   is exited when & if the variable 'should_exit' is non-zero.  (It
475228
+   is initialized to zero in this program, so the loop will never
475228
+   exit unless/until gdb sets the variable to non-zero.)
475228
+   */
475228
+#include <stdio.h>
475228
+#include <stdlib.h>
475228
+#include <unistd.h>
475228
+
475228
+int  should_exit = 0;
475228
+
475228
+int main ()
475228
+{
475228
+  int  local_i = 0;
475228
+
475228
+  sleep( 10 ); /* System call causes register fetch to fail */
475228
+               /* This is a known HPUX "feature"            */
475228
+  while (! should_exit)
475228
+    {
475228
+      local_i++;
475228
+    }
475228
+  return (0);
475228
+}