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

861f93
2005-07-21  Jeff Johnston  <jjohnstn@redhat.com>
861f93
861f93
	* gdb.base/attach-32.exp: New test for attaching in 32-bit
861f93
	mode on 64-bit systems.
861f93
	* gdb.base/attach-32.c: Ditto.
861f93
	* gdb.base/attach-32b.c: Ditto.
861f93
861f93
2007-12-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
861f93
861f93
	* gdb.base/attach-32.exp: Fix forgotten $GDBFLAGS as set.
861f93
861f93
Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.base/attach-32.c
861f93
===================================================================
861f93
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
861f93
+++ gdb-7.2.50.20110320/gdb/testsuite/gdb.base/attach-32.c	2011-03-20 20:15:57.000000000 +0100
861f93
@@ -0,0 +1,20 @@
861f93
+/* This program is intended to be started outside of gdb, and then
861f93
+   attached to by gdb.  Thus, it simply spins in a loop.  The loop
861f93
+   is exited when & if the variable 'should_exit' is non-zero.  (It
861f93
+   is initialized to zero in this program, so the loop will never
861f93
+   exit unless/until gdb sets the variable to non-zero.)
861f93
+   */
861f93
+#include <stdio.h>
861f93
+
861f93
+int  should_exit = 0;
861f93
+
861f93
+int main ()
861f93
+{
861f93
+  int  local_i = 0;
861f93
+
861f93
+  while (! should_exit)
861f93
+    {
861f93
+      local_i++;
861f93
+    }
861f93
+  return 0;
861f93
+}
861f93
Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.base/attach-32.exp
861f93
===================================================================
861f93
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
861f93
+++ gdb-7.2.50.20110320/gdb/testsuite/gdb.base/attach-32.exp	2011-03-20 20:20:03.000000000 +0100
861f93
@@ -0,0 +1,245 @@
861f93
+# Copyright 2005 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
+# This test was based on attach.exp and modified for 32/64 bit Linux systems. */
861f93
+
861f93
+# On HP-UX 11.0, this test is causing a process running the program
861f93
+# "attach" to be left around spinning.  Until we figure out why, I am
861f93
+# commenting out the test to avoid polluting tiamat (our 11.0 nightly
861f93
+# test machine) with these processes. RT
861f93
+#
861f93
+# Setting the magic bit in the target app should work.  I added a
861f93
+# "kill", and also a test for the R3 register warning.  JB
861f93
+if { ![istarget "x86_64*-*linux*"] 
861f93
+     && ![istarget "powerpc64*-*linux*"]} {
861f93
+    return 0
861f93
+}
861f93
+
861f93
+# are we on a target board
861f93
+if [is_remote target] then {
861f93
+    return 0
861f93
+}
861f93
+
861f93
+set testfile "attach-32"
861f93
+set srcfile  ${testfile}.c
861f93
+set srcfile2 ${testfile}b.c
861f93
+set binfile  ${objdir}/${subdir}/${testfile}
861f93
+set binfile2 ${objdir}/${subdir}/${testfile}b
861f93
+set escapedbinfile  [string_to_regexp ${objdir}/${subdir}/${testfile}]
861f93
+
861f93
+#execute_anywhere "rm -f ${binfile} ${binfile2}"
861f93
+remote_exec build "rm -f ${binfile} ${binfile2}"
861f93
+# For debugging this test
861f93
+#
861f93
+#log_user 1
861f93
+
861f93
+# build the first test case
861f93
+#
861f93
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "additional_flags=-m32"]] != "" } {
861f93
+    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
861f93
+}
861f93
+
861f93
+# Build the in-system-call test
861f93
+
861f93
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" executable [list debug "additional_flags=-m32"]] != "" } {
861f93
+    gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
861f93
+}
861f93
+
861f93
+if [get_compiler_info ${binfile}] {
861f93
+    return -1
861f93
+}
861f93
+
861f93
+proc do_attach_tests {} {
861f93
+    global gdb_prompt
861f93
+    global binfile
861f93
+    global escapedbinfile
861f93
+    global srcfile
861f93
+    global testfile
861f93
+    global objdir
861f93
+    global subdir
861f93
+    global timeout
861f93
+    global testpid
861f93
+    
861f93
+    # Verify that we can "see" the variable "should_exit" in the
861f93
+    # program, and that it is zero.
861f93
+   
861f93
+    gdb_test "print should_exit" " = 0" "after attach-32, print should_exit"
861f93
+
861f93
+    # Verify that we can modify the variable "should_exit" in the
861f93
+    # program.
861f93
+
861f93
+    gdb_test "set should_exit=1" "" "after attach-32, set should_exit"
861f93
+
861f93
+    # Verify that the modification really happened.
861f93
+
861f93
+    send_gdb "tbreak 19\n"
861f93
+    gdb_expect {
861f93
+	-re "reakpoint .*at.*$srcfile, line 19.*$gdb_prompt $" {
861f93
+	    pass "after attach-32, set tbreak postloop"
861f93
+	}
861f93
+	-re "$gdb_prompt $" {
861f93
+	    fail "after attach-32, set tbreak postloop"
861f93
+	}
861f93
+	timeout {
861f93
+	    fail "(timeout) after attach-32, set tbreak postloop"
861f93
+	}
861f93
+    }
861f93
+    send_gdb "continue\n"
861f93
+    gdb_expect {
861f93
+	-re "main.*at.*$srcfile:19.*$gdb_prompt $" {
861f93
+	    pass "after attach-32, reach tbreak postloop"
861f93
+	}
861f93
+	-re "$gdb_prompt $" {
861f93
+	    fail "after attach-32, reach tbreak postloop"
861f93
+	}
861f93
+	timeout {
861f93
+	    fail "(timeout) after attach-32, reach tbreak postloop"
861f93
+	}
861f93
+    }
861f93
+
861f93
+    # Allow the test process to exit, to cleanup after ourselves.
861f93
+
861f93
+    gdb_test "continue" {\[Inferior .* exited normally\]} "after attach-32, exit"
861f93
+
861f93
+    # Make sure we don't leave a process around to confuse
861f93
+    # the next test run (and prevent the compile by keeping
861f93
+    # the text file busy), in case the "set should_exit" didn't
861f93
+    # work.
861f93
+   
861f93
+    remote_exec build "kill -9 ${testpid}"
861f93
+
861f93
+    # Start the program running and then wait for a bit, to be sure
861f93
+    # that it can be attached to.
861f93
+   
861f93
+    set testpid [eval exec $binfile &]
861f93
+    exec sleep 2
861f93
+    if { [istarget "*-*-cygwin*"] } {
861f93
+	# testpid is the Cygwin PID, GDB uses the Windows PID, which might be
861f93
+	# different due to the way fork/exec works.
861f93
+	set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
861f93
+    }
861f93
+
861f93
+    # Verify that we can attach to the process, and find its a.out
861f93
+    # when we're cd'd to some directory that doesn't contain the
861f93
+    # a.out.  (We use the source path set by the "dir" command.)
861f93
+    
861f93
+    gdb_test "dir ${objdir}/${subdir}" "Source directories searched: .*" \
861f93
+	"set source path"
861f93
+
861f93
+    gdb_test "cd /tmp" "Working directory /tmp." \
861f93
+	"cd away from process working directory"
861f93
+
861f93
+    # Explicitly flush out any knowledge of the previous attachment.
861f93
+
861f93
+    set test "before attach-32-3, flush symbols"
861f93
+    gdb_test_multiple "symbol" "$test" {
861f93
+	-re "Discard symbol table from.*y or n. $" {
861f93
+	    gdb_test "y" "No symbol file now." \
861f93
+		"$test"
861f93
+	}
861f93
+	-re "No symbol file now.*$gdb_prompt $" {
861f93
+	    pass "$test"
861f93
+	}
861f93
+    }
861f93
+
861f93
+    gdb_test "exec" "No executable file now." \
861f93
+	"before attach-32-3, flush exec"
861f93
+
861f93
+    gdb_test "attach $testpid" \
861f93
+	"Attaching to process $testpid.*Reading symbols from $escapedbinfile.*main.*at .*" \
861f93
+	"attach-32 when process' a.out not in cwd"
861f93
+
861f93
+    set test "after attach-32-3, exit"
861f93
+    gdb_test_multiple "kill" "$test" {
861f93
+	-re "Kill the program being debugged.*y or n. $" {
861f93
+	    gdb_test "y" "" "$test"
861f93
+	}
861f93
+    }
861f93
+    
861f93
+    # Another "don't leave a process around"
861f93
+    remote_exec build "kill -9 ${testpid}"
861f93
+}
861f93
+
861f93
+proc do_call_attach_tests {} {
861f93
+    global gdb_prompt
861f93
+    global binfile2
861f93
+    global testpid
861f93
+    
861f93
+    # See if other registers are problems
861f93
+    
861f93
+    set test "info other register"
861f93
+    gdb_test_multiple "i r r3" "$test" {
861f93
+	-re "warning: reading register.*$gdb_prompt $" {
861f93
+	    fail "$test"
861f93
+	}
861f93
+	-re "r3.*$gdb_prompt $" {
861f93
+	    pass "$test"
861f93
+	}
861f93
+    }
861f93
+
861f93
+    # Get rid of the process
861f93
+    
861f93
+    gdb_test "p should_exit = 1"
861f93
+    gdb_test "c" {\[Inferior .* exited normally\]}
861f93
+   
861f93
+    # Be paranoid
861f93
+   
861f93
+    remote_exec build "kill -9 ${testpid}"
861f93
+}
861f93
+
861f93
+
861f93
+# Start with a fresh gdb
861f93
+
861f93
+gdb_exit
861f93
+set testpid [eval exec $binfile &]
861f93
+exec sleep 3
861f93
+if { [istarget "*-*-cygwin*"] } {
861f93
+    # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
861f93
+    # different due to the way fork/exec works.
861f93
+    set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
861f93
+}
861f93
+
861f93
+set GDBFLAGS_orig $GDBFLAGS
861f93
+set GDBFLAGS "--pid=$testpid"
861f93
+gdb_start
861f93
+set GDBFLAGS $GDBFLAGS_orig
861f93
+
861f93
+gdb_reinitialize_dir $srcdir/$subdir
861f93
+
861f93
+# This is a test of gdb's ability to attach to a running process.
861f93
+
861f93
+do_attach_tests
861f93
+
861f93
+# Test attaching when the target is inside a system call
861f93
+
861f93
+gdb_exit
861f93
+set testpid [eval exec $binfile2 &]
861f93
+exec sleep 3
861f93
+if { [istarget "*-*-cygwin*"] } {
861f93
+    # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
861f93
+    # different due to the way fork/exec works.
861f93
+    set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
861f93
+}
861f93
+
861f93
+set GDBFLAGS_orig $GDBFLAGS
861f93
+set GDBFLAGS "--pid=$testpid"
861f93
+gdb_start
861f93
+set GDBFLAGS $GDBFLAGS_orig
861f93
+
861f93
+gdb_reinitialize_dir $srcdir/$subdir
861f93
+do_call_attach_tests
861f93
+
861f93
+return 0
861f93
Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.base/attach-32b.c
861f93
===================================================================
861f93
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
861f93
+++ gdb-7.2.50.20110320/gdb/testsuite/gdb.base/attach-32b.c	2011-03-20 20:15:57.000000000 +0100
861f93
@@ -0,0 +1,24 @@
861f93
+/* This program is intended to be started outside of gdb, and then
861f93
+   attached to by gdb.  Thus, it simply spins in a loop.  The loop
861f93
+   is exited when & if the variable 'should_exit' is non-zero.  (It
861f93
+   is initialized to zero in this program, so the loop will never
861f93
+   exit unless/until gdb sets the variable to non-zero.)
861f93
+   */
861f93
+#include <stdio.h>
861f93
+#include <stdlib.h>
861f93
+#include <unistd.h>
861f93
+
861f93
+int  should_exit = 0;
861f93
+
861f93
+int main ()
861f93
+{
861f93
+  int  local_i = 0;
861f93
+
861f93
+  sleep( 10 ); /* System call causes register fetch to fail */
861f93
+               /* This is a known HPUX "feature"            */
861f93
+  while (! should_exit)
861f93
+    {
861f93
+      local_i++;
861f93
+    }
861f93
+  return (0);
861f93
+}