]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.threads/staticthreads.exp
* gdb.threads/staticthreads.exp: Match .*sem_post.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.threads / staticthreads.exp
1 # static.exp -- test script, for GDB, the GNU debugger.
2
3 # Copyright 2004, 2005, 2007 Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 # Based on manythreads written by Jeff Johnston, contributed by Red
20 # Hat.
21
22 if $tracelevel then {
23 strace $tracelevel
24 }
25
26 set prms_id 0
27 set bug_id 0
28
29 set testfile "staticthreads"
30 set srcfile ${testfile}.c
31 set binfile ${objdir}/${subdir}/${testfile}
32 set static_flag "-static"
33
34 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
35 executable \
36 [list debug "incdir=${objdir}" "additional_flags=${static_flag}" \
37 ]] != "" } {
38 return -1
39 }
40
41 gdb_start
42 gdb_reinitialize_dir $srcdir/$subdir
43 gdb_load ${binfile}
44 gdb_test "set print sevenbit-strings" ""
45
46
47 # See if the static multi-threaded program runs.
48
49 runto_main
50 gdb_test "break sem_post"
51 set test "Continue to main's call of sem_post"
52 gdb_test_multiple "continue" "$test" {
53 -re "Breakpoint .*, .*sem_post .*$gdb_prompt " {
54 pass "$test"
55 }
56 -re "Program received signal .*$gdb_prompt " {
57 kfail gdb/1328 "$test"
58 }
59 }
60
61
62 # See if handle SIG32 helps (a little) with a static multi-threaded
63 # program.
64
65 set sig "SIG32"
66
67 # SIGRTMIN is 37 on hppa-linux and hpux
68 if [istarget hppa*-*-*] {
69 set sig "SIG37"
70 }
71
72 rerun_to_main
73 gdb_test "handle $sig nostop noprint pass"
74 set test "Handle $sig helps"
75 gdb_test "continue" " .*sem_post .*" "handle $sig helps"
76
77
78 # See if info threads produces anything approaching a thread list.
79
80 set test "info threads"
81 gdb_test_multiple "info threads" "$test" {
82 -re " Thread .*$gdb_prompt " {
83 pass "$test"
84 }
85 -re "$gdb_prompt " {
86 kfail gdb/1328 "$test"
87 }
88 }
89
90
91 # Check that the program can be quit.
92
93 set test "GDB exits with static thread program"
94 gdb_test_multiple "quit" "$test" {
95 -re "The program is running. Exit anyway\\? \\(y or n\\) $" {
96 send_gdb "y\n"
97 exp_continue
98 }
99 eof {
100 pass "$test"
101 }
102 }