* gdb.base/attach.exp: Fix copyright date. Set testpid to Windows
[external/binutils.git] / gdb / testsuite / gdb.base / attach.exp
1 #   Copyright 1997, 1999, 2002, 2003, 2004 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-gdb@prep.ai.mit.edu
19
20 if $tracelevel then {
21         strace $tracelevel
22         }
23
24 set prms_id 0
25 set bug_id 0
26
27 # On HP-UX 11.0, this test is causing a process running the program
28 # "attach" to be left around spinning.  Until we figure out why, I am
29 # commenting out the test to avoid polluting tiamat (our 11.0 nightly
30 # test machine) with these processes. RT
31 #
32 # Setting the magic bit in the target app should work.  I added a
33 # "kill", and also a test for the R3 register warning.  JB
34 if { [istarget "hppa*-*-hpux*"] } {
35     return 0
36 }
37
38 # are we on a target board
39 if [is_remote target] then {
40     return 0
41 }
42
43 set testfile "attach"
44 set srcfile  ${testfile}.c
45 set srcfile2 ${testfile}2.c
46 set binfile  ${objdir}/${subdir}/${testfile}
47 set binfile2 ${objdir}/${subdir}/${testfile}2
48 set escapedbinfile  [string_to_regexp ${objdir}/${subdir}/${testfile}]
49 set cleanupfile ${objdir}/${subdir}/${testfile}.awk
50
51 #execute_anywhere "rm -f ${binfile} ${binfile2}"
52 remote_exec build "rm -f ${binfile} ${binfile2}"
53 # For debugging this test
54 #
55 #log_user 1
56
57 # Clean out any old files from past runs.
58 #
59 remote_exec build "${cleanupfile}"
60
61 # build the first test case
62 #
63 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
64      gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
65 }
66
67 # Build the in-system-call test
68
69 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" executable {debug}] != "" } {
70      gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
71 }
72
73 if [get_compiler_info ${binfile}] {
74     return -1
75 }
76
77 proc do_attach_tests {} {
78    global gdb_prompt
79    global binfile
80    global escapedbinfile
81    global srcfile
82    global testfile
83    global objdir
84    global subdir
85    global timeout
86
87    # Start the program running and then wait for a bit, to be sure
88    # that it can be attached to.
89    #
90    set testpid [eval exec $binfile &]
91    exec sleep 2
92    if { [istarget "*-*-cygwin*"] } {
93        # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
94        # different due to the way fork/exec works.
95        set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
96    }
97
98    # Verify that we cannot attach to nonsense.
99    #
100    send_gdb "attach abc\n"
101    gdb_expect {
102       -re ".*Illegal process-id: abc.*$gdb_prompt $"\
103                       {pass "attach to nonsense is prohibited"}
104       -re "Attaching to.*, process .*couldn't open /proc file.*$gdb_prompt $"\
105                       {
106                         # Response expected from /proc-based systems.
107                         pass "attach to nonsense is prohibited" 
108                       }
109       -re ".*Can't attach to process..*$gdb_prompt $"\
110                       {
111                         # Response expected on Cygwin
112                         pass "attach to nonsense is prohibited"
113                       }
114       -re "Attaching to.*$gdb_prompt $"\
115                       {fail "attach to nonsense is prohibited (bogus pid allowed)"}
116       -re "$gdb_prompt $" {fail "attach to nonsense is prohibited"}
117       timeout         {fail "(timeout) attach to nonsense is prohibited"}
118    }
119
120    # Verify that we cannot attach to what appears to be a valid
121    # process ID, but is a process that doesn't exist.  Traditionally,
122    # most systems didn't have a process with ID 0, so we take that as
123    # the default.  However, there are a few exceptions.
124    #
125    set boguspid 0
126    if { [istarget "*-*-*bsd*"] } {
127        # In FreeBSD 5.0, PID 0 is used for "swapper".  Use -1 instead
128        # (which should have the desired effect on any version of
129        # FreeBSD, and probably other *BSD's too).
130        set boguspid -1
131    }
132    send_gdb "attach $boguspid\n"
133    gdb_expect {
134        -re "Attaching to.*, process $boguspid.*No such process.*$gdb_prompt $"\
135                {
136            # Response expected on ptrace-based systems (i.e. HP-UX 10.20).
137            pass "attach to nonexistent process is prohibited"
138        }
139        -re "Attaching to.*, process $boguspid failed.*Hint.*$gdb_prompt $"\
140                {
141            # Response expected on ttrace-based systems (i.e. HP-UX 11.0).
142            pass "attach to nonexistent process is prohibited"
143        }
144        -re "Attaching to.*, process $boguspid.*denied.*$gdb_prompt $"\
145                {pass "attach to nonexistent process is prohibited"}
146        -re "Attaching to.*, process $boguspid.*not permitted.*$gdb_prompt $"\
147                {pass "attach to nonexistent process is prohibited"}
148        -re "Attaching to.*, process .*couldn't open /proc file.*$gdb_prompt $"\
149                {
150            # Response expected from /proc-based systems.
151            pass "attach to nonexistent process is prohibited"
152        }
153        -re ".*Can't attach to process..*$gdb_prompt $"\
154                {
155            # Response expected on Cygwin
156            pass "attach to nonexistent process is prohibited"
157        }
158        -re "$gdb_prompt $" {fail "attach to nonexistent process is prohibited"}
159        timeout {
160            fail "(timeout) attach to nonexistent process is prohibited"
161        }
162    }
163
164    # Verify that we can attach to the process by first giving its
165    # executable name via the file command, and using attach with
166    # the process ID.
167    #
168    # (Actually, the test system appears to do this automatically
169    # for us.  So, we must also be prepared to be asked if we want
170    # to discard an existing set of symbols.)
171    #
172    send_gdb "file $binfile\n"
173    gdb_expect {
174       -re "Load new symbol table from.*y or n.*$" {
175          send_gdb "y\n"
176          gdb_expect {
177             -re "Reading symbols from $escapedbinfile\.\.\.*done.*$gdb_prompt $"\
178                             {pass "(re)set file, before attach1"}
179             -re "$gdb_prompt $" {fail "(re)set file, before attach1"}
180             timeout         {fail "(timeout) (re)set file, before attach1"}
181          }
182       }
183       -re "Reading symbols from $escapedbinfile\.\.\.*done.*$gdb_prompt $"\
184                       {pass "set file, before attach1"}
185       -re "$gdb_prompt $" {fail "set file, before attach1"}
186       timeout         {fail "(timeout) set file, before attach1"}
187    }
188
189    send_gdb "attach $testpid\n"
190    gdb_expect {
191       -re "Attaching to program.*`?$escapedbinfile'?, process $testpid.*main.*at .*$srcfile:.*$gdb_prompt $"\
192                       {pass "attach1, after setting file"}
193       -re "Attaching to program.*`?$escapedbinfile\.exe'?, process $testpid.*\[Switching to thread $testpid\..*\].*$gdb_prompt $"\
194                       {
195                          # Response expected on Cygwin
196                          pass "attach1, after setting file"
197                       }
198       -re "$gdb_prompt $" {fail "attach1, after setting file"}
199       timeout         {fail "(timeout) attach1, after setting file"}
200    }
201
202    # Verify that we can "see" the variable "should_exit" in the
203    # program, and that it is zero.
204    #
205    send_gdb "print should_exit\n"
206    gdb_expect {
207       -re ".* = 0.*$gdb_prompt $"\
208                       {pass "after attach1, print should_exit"}
209       -re "$gdb_prompt $" {fail "after attach1, print should_exit"}
210       timeout         {fail "(timeout) after attach1, print should_exit"}
211    }
212
213    # Detach the process.
214    #
215    send_gdb "detach\n"
216    gdb_expect {
217       -re "Detaching from program: .*$escapedbinfile.*$gdb_prompt $"\
218                       {pass "attach1 detach"}
219       -re "$gdb_prompt $" {fail "attach1 detach"}
220       timeout         {fail "(timeout) attach1 detach"}
221    }
222
223    # Wait a bit for gdb to finish detaching
224    #
225    exec sleep 5
226
227    # Purge the symbols from gdb's brain.  (We want to be certain
228    # the next attach, which won't be preceded by a "file" command,
229    # is really getting the executable file without our help.)
230    #
231    set old_timeout $timeout
232    set timeout 15 
233    send_gdb "file\n"
234    gdb_expect {
235       -re ".*gdb internal error.*$" { 
236           fail "Internal error, prob. Memory corruption" 
237       }
238       -re "No executable file now.*Discard symbol table.*y or n.*$" {
239          send_gdb "y\n"
240          gdb_expect {
241             -re "No symbol file now.*$gdb_prompt $"\
242                             {pass "attach1, purging symbols after detach"}
243             -re "$gdb_prompt $" {fail "attach1, purging symbols after detach"}
244             timeout         {fail "(timeout) attach1, purging symbols after detach"}
245          }
246       }
247       -re "$gdb_prompt $" {fail "attach1, purging file after detach"}
248       timeout         {
249           fail "(timeout) attach1, purging file after detach"
250       }
251    }
252    set timeout $old_timeout
253
254    # Verify that we can attach to the process just by giving the
255    # process ID.
256    #
257    send_gdb "attach $testpid\n"
258    gdb_expect {
259       -re "Attaching to process $testpid.*Load new symbol table from \"$escapedbinfile\.exe\".*y or n.*$" {
260         # On Cygwin, the DLL's symbol tables are loaded prior to the
261         # executable's symbol table.  This in turn always results in
262         # asking the user for actually loading the symbol table of the
263         # executable.
264         send_gdb "y\n"
265         gdb_expect {
266           -re "Reading symbols from $escapedbinfile\.\.\.*done.*$gdb_prompt $"\
267                       {pass "(re)set file, before attach2"}
268           -re "$gdb_prompt $"\
269                       {fail "(re)set file, before attach2"}
270           timeout     {fail "(timeout) (re)set file, before attach2"}
271         }
272       }
273       -re "Attaching to process $testpid.*Reading symbols from $escapedbinfile.*main.*at .*$gdb_prompt $"\
274                       {pass "attach2"}
275       -re "$gdb_prompt $" {fail "attach2"}
276       timeout         {fail "(timeout) attach2"}
277    }
278
279    # Verify that we can modify the variable "should_exit" in the
280    # program.
281    #
282    send_gdb "set should_exit=1\n"
283    gdb_expect {
284       -re "$gdb_prompt $" {pass "after attach2, set should_exit"}
285       timeout         {fail "(timeout) after attach2, set should_exit"}
286    }
287
288    # Verify that the modification really happened.
289    #
290    send_gdb "tbreak 19\n"
291    gdb_expect {
292       -re "Breakpoint .*at.*$srcfile, line 19.*$gdb_prompt $"\
293                       {pass "after attach2, set tbreak postloop"}
294       -re "$gdb_prompt $" {fail "after attach2, set tbreak postloop"}
295       timeout         {fail "(timeout) after attach2, set tbreak postloop"}
296    }
297    send_gdb "continue\n"
298    gdb_expect {
299       -re "main.*at.*$srcfile:19.*$gdb_prompt $"\
300                       {pass "after attach2, reach tbreak postloop"}
301       -re "$gdb_prompt $" {fail "after attach2, reach tbreak postloop"}
302       timeout         {fail "(timeout) after attach2, reach tbreak postloop"}
303    }
304
305    # Allow the test process to exit, to cleanup after ourselves.
306    #
307    send_gdb "continue\n"
308    gdb_expect {
309       -re "Program exited normally.*$gdb_prompt $"\
310                       {pass "after attach2, exit"}
311       -re "$gdb_prompt $" {fail "after attach2, exit"}
312       timeout         {fail "(timeout) after attach2, exit"}
313    }
314
315    # Make sure we don't leave a process around to confuse
316    # the next test run (and prevent the compile by keeping
317    # the text file busy), in case the "set should_exit" didn't
318    # work.
319    #
320    remote_exec build "kill -9 ${testpid}"
321    # Start the program running and then wait for a bit, to be sure
322    # that it can be attached to.
323    #
324    set testpid [eval exec $binfile &]
325    exec sleep 2
326    if { [istarget "*-*-cygwin*"] } {
327        # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
328        # different due to the way fork/exec works.
329        set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
330    }
331
332    # Verify that we can attach to the process, and find its a.out
333    # when we're cd'd to some directory that doesn't contain the
334    # a.out.  (We use the source path set by the "dir" command.)
335    #
336    send_gdb "dir ${objdir}/${subdir}\n"
337    gdb_expect {
338       -re ".*Source directories searched: .*$gdb_prompt $"\
339                       {pass "set source path"}
340       -re "$gdb_prompt $" {fail "set source path"}
341       timeout         {fail "(timeout) set source path"}
342    }
343
344    send_gdb "cd /tmp\n"
345    gdb_expect {
346       -re ".*Working directory /tmp.*$gdb_prompt $"\
347                       {pass "cd away from process' a.out"}
348       -re "$gdb_prompt $" {fail "cd away from process' a.out"}
349       timeout         {fail "(timeout) cd away from process' a.out"}
350    }
351
352    # Explicitly flush out any knowledge of the previous attachment.
353    send_gdb "symbol\n"
354    gdb_expect {
355       -re ".*Discard symbol table from.*y or n. $"\
356                       {send_gdb "y\n"
357                        gdb_expect {
358                           -re ".*No symbol file now.*$gdb_prompt $"\
359                                           {pass "before attach3, flush symbols"}
360                           -re "$gdb_prompt $" {fail "before attach3, flush symbols"}
361                           timeout         {fail "(timeout) before attach3, flush symbols"}
362                        }
363                       }
364       -re ".*No symbol file now.*$gdb_prompt $"\
365                       {pass "before attach3, flush symbols"}
366       -re "$gdb_prompt $" {fail "before attach3, flush symbols"}
367       timeout         {fail "(timeout) before attach3, flush symbols"}
368    }
369    send_gdb "exec\n"
370    gdb_expect {
371       -re ".*No executable file now.*$gdb_prompt $"\
372                       {pass "before attach3, flush exec"}
373       -re "$gdb_prompt $" {fail "before attach3, flush exec"}
374       timeout         {fail "(timeout) before attach3, flush exec"}
375    }
376
377    send_gdb "attach $testpid\n"
378    gdb_expect {
379       -re "Attaching to process $testpid.*Reading symbols from $escapedbinfile.*main.*at .*$gdb_prompt $"\
380                       {pass "attach when process' a.out not in cwd"}
381       -re "$gdb_prompt $" {fail "attach when process' a.out not in cwd"}
382       timeout         {fail "(timeout) attach when process' a.out not in cwd"}
383    }
384
385    send_gdb "kill\n"
386    gdb_expect {
387       -re ".*Kill the program being debugged.*y or n. $"\
388                       {send_gdb "y\n"
389                        gdb_expect {
390                           -re "$gdb_prompt $" {pass "after attach3, exit"}
391                           timeout {fail "(timeout) after attach3, exit"}
392                        }
393                       }
394       -re "$gdb_prompt $" {fail "after attach3, exit"}
395       timeout         {fail "(timeout) after attach3, exit"}
396    }
397
398    # Another "don't leave a process around"
399    remote_exec build "kill -9 ${testpid}"
400 }
401
402 proc do_call_attach_tests {} {
403    global gdb_prompt
404    global binfile2
405
406    # Start the program running and then wait for a bit, to be sure
407    # that it can be attached to.
408    #
409    set testpid [eval exec $binfile2 &]
410    exec sleep 2
411    if { [istarget "*-*-cygwin*"] } {
412        # testpid is the Cygwin PID, GDB uses the Windows PID, which might be
413        # different due to the way fork/exec works.
414        set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
415    }
416
417    # Attach
418    #
419    gdb_test "file $binfile2" ".*" "force switch to gdb64, if necessary"
420    send_gdb "attach $testpid\n"
421    gdb_expect {
422      -re ".*warning: reading register.*I.*O error.*$gdb_prompt $" {
423          fail "attach call, read register 3 error"
424      }
425      -re "Attaching to.*process $testpid.*libc.*$gdb_prompt $" {
426          pass "attach call"
427      }
428      -re "Attaching to.*process $testpid.*\[Switching to thread $testpid\..*\].*$gdb_prompt $" {
429          pass "attach call"
430      }
431      -re "$gdb_prompt $" {fail "attach call"}
432       timeout         {fail "(timeout) attach call"}
433    }
434
435    # See if other registers are problems
436    #
437    send_gdb "i r r3\n"
438    gdb_expect {
439        -re ".*warning: reading register.*$gdb_prompt $" {
440            pass "CHFts23490: known bug"
441        }
442        -re ".*r3.*$gdb_prompt $" {
443            pass "Bug fixed, Yayyy!"
444        }
445        timeout { fail "timeout on info reg" }
446    }
447
448    # Get rid of the process
449    #
450    gdb_test "p should_exit = 1" ".*"
451    gdb_test "c" ".*Program exited normally.*"
452    
453    # Be paranoid
454    #
455     remote_exec build "kill -9 ${testpid}"
456
457 }
458
459
460 # Start with a fresh gdb
461 #
462 gdb_exit
463 gdb_start
464 gdb_reinitialize_dir $srcdir/$subdir
465 gdb_load ${binfile}
466
467 # This is a test of gdb's ability to attach to a running process.
468 #
469 do_attach_tests
470
471 # Test attaching when the target is inside a system call
472 #
473 gdb_exit
474 gdb_start
475
476 gdb_reinitialize_dir $srcdir/$subdir
477 do_call_attach_tests
478
479 return 0