You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.7 KiB
89 lines
2.7 KiB
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001 |
|
From: Fedora GDB patches <invalid@email.com> |
|
Date: Fri, 27 Oct 2017 21:07:50 +0200 |
|
Subject: gdb-6.5-bz243845-stale-testing-zombie-test.patch |
|
|
|
;; Test leftover zombie process (BZ 243845). |
|
;;=fedoratest |
|
|
|
diff --git a/gdb/testsuite/gdb.base/tracefork-zombie.exp b/gdb/testsuite/gdb.base/tracefork-zombie.exp |
|
new file mode 100644 |
|
--- /dev/null |
|
+++ b/gdb/testsuite/gdb.base/tracefork-zombie.exp |
|
@@ -0,0 +1,76 @@ |
|
+# Copyright 2007 Free Software Foundation, Inc. |
|
+ |
|
+# This program is free software; you can redistribute it and/or modify |
|
+# it under the terms of the GNU General Public License as published by |
|
+# the Free Software Foundation; either version 2 of the License, or |
|
+# (at your option) any later version. |
|
+# |
|
+# This program is distributed in the hope that it will be useful, |
|
+# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
+# GNU General Public License for more details. |
|
+# |
|
+# You should have received a copy of the GNU General Public License |
|
+# along with this program; if not, write to the Free Software |
|
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
|
+ |
|
+# are we on a target board |
|
+if {[use_gdb_stub]} { |
|
+ untested "skipping test because of use_gdb_stub" |
|
+ return -1 |
|
+} |
|
+ |
|
+# Start the program running and then wait for a bit, to be sure |
|
+# that it can be attached to. |
|
+ |
|
+gdb_exit |
|
+gdb_start |
|
+gdb_load sleep |
|
+ |
|
+set gdb_pid [exp_pid -i [board_info host fileid]] |
|
+set test "identified the child GDB" |
|
+if {$gdb_pid != "" && $gdb_pid > 0} { |
|
+ pass $test |
|
+ verbose -log "Child GDB PID $gdb_pid" |
|
+} else { |
|
+ fail $test |
|
+} |
|
+ |
|
+set testpid [eval exec sleep 10 &] |
|
+exec sleep 2 |
|
+ |
|
+set test "attach" |
|
+gdb_test_multiple "attach $testpid" "$test" { |
|
+ -re "Attaching to program.*`?.*'?, process $testpid..*$gdb_prompt $" { |
|
+ pass "$test" |
|
+ } |
|
+ -re "Attaching to program.*`?.*\.exe'?, process $testpid.*\[Switching to thread $testpid\..*\].*$gdb_prompt $" { |
|
+ # Response expected on Cygwin |
|
+ pass "$test" |
|
+ } |
|
+} |
|
+ |
|
+# Some time to let GDB spawn its testing child. |
|
+exec sleep 2 |
|
+ |
|
+set found none |
|
+foreach procpid [glob -directory /proc -type d {[0-9]*}] { |
|
+ if {[catch {open $procpid/status} statusfi]} { |
|
+ continue |
|
+ } |
|
+ set status [read $statusfi] |
|
+ close $statusfi |
|
+ if {1 |
|
+ && [regexp -line {^Name:\tgdb$} $status] |
|
+ && [regexp -line {^PPid:\t1$} $status] |
|
+ && [regexp -line "^TracerPid:\t$gdb_pid$" $status]} { |
|
+ set found $procpid |
|
+ verbose -log "Found linux_test_for_tracefork zombie PID $procpid" |
|
+ } |
|
+} |
|
+set test "linux_test_for_tracefork leaves no zombie" |
|
+if {$found eq {none}} { |
|
+ pass $test |
|
+} else { |
|
+ fail $test |
|
+}
|
|
|