1 |
330 |
jeremybenn |
# Copyright 2009, 2010 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 3 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, see .
|
15 |
|
|
|
16 |
|
|
if $tracelevel then {
|
17 |
|
|
strace $tracelevel
|
18 |
|
|
}
|
19 |
|
|
|
20 |
|
|
load_lib "ada.exp"
|
21 |
|
|
|
22 |
|
|
set testdir "tasks"
|
23 |
|
|
set testfile "${testdir}/foo"
|
24 |
|
|
set srcfile ${srcdir}/${subdir}/${testfile}.adb
|
25 |
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
26 |
|
|
|
27 |
|
|
file mkdir ${objdir}/${subdir}/${testdir}
|
28 |
|
|
if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
|
29 |
|
|
return -1
|
30 |
|
|
}
|
31 |
|
|
|
32 |
|
|
gdb_exit
|
33 |
|
|
gdb_start
|
34 |
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
35 |
|
|
gdb_load ${binfile}
|
36 |
|
|
|
37 |
|
|
set bp_location [gdb_get_line_number "STOP_HERE" ${testdir}/foo.adb]
|
38 |
|
|
runto "foo.adb:$bp_location"
|
39 |
|
|
|
40 |
|
|
# Make sure that all tasks appear in the "info tasks" listing, and
|
41 |
|
|
# that the active task is the environment task.
|
42 |
|
|
gdb_test "info tasks" \
|
43 |
|
|
[join {" ID TID P-ID Pri State Name" \
|
44 |
|
|
"\\* 1 .* main_task" \
|
45 |
|
|
" 2 .* task_list\\(1\\)" \
|
46 |
|
|
" 3 .* task_list\\(2\\)" \
|
47 |
|
|
" 4 .* task_list\\(3\\)"} \
|
48 |
|
|
"\r\n"] \
|
49 |
|
|
"info tasks before inserting breakpoint"
|
50 |
|
|
|
51 |
|
|
# Now, insert a breakpoint that should stop only if task 3 stops.
|
52 |
|
|
gdb_test "break break_me task 3" "Breakpoint .* at .*"
|
53 |
|
|
|
54 |
|
|
# Continue to that breakpoint. Task 2 should hit it first, and GDB
|
55 |
|
|
# is expected to ignore that hit and resume the execution. Only then
|
56 |
|
|
# task 3 will hit our breakpoint, and GDB is expected to stop at that
|
57 |
|
|
# point.
|
58 |
|
|
gdb_test "continue" \
|
59 |
|
|
".*Breakpoint.*, foo.break_me \\(\\).*" \
|
60 |
|
|
"continue to breakpoint"
|
61 |
|
|
|
62 |
|
|
# Check that it is indeed task 3 that hit the breakpoint by checking
|
63 |
|
|
# which is the active task.
|
64 |
|
|
gdb_test "info tasks" \
|
65 |
|
|
[join {" ID TID P-ID Pri State Name" \
|
66 |
|
|
" 1 .* main_task" \
|
67 |
|
|
" 2 .* task_list\\(1\\)" \
|
68 |
|
|
"\\* 3 .* task_list\\(2\\)" \
|
69 |
|
|
" 4 .* task_list\\(3\\)"} \
|
70 |
|
|
"\r\n"] \
|
71 |
|
|
"info tasks after hitting breakpoint"
|
72 |
|
|
|
73 |
|
|
# Now, resume the execution and make sure that GDB does not stop when
|
74 |
|
|
# task 4 hits the breakpoint. Continuing thus results in our program
|
75 |
|
|
# running to completion.
|
76 |
|
|
gdb_test "continue" \
|
77 |
|
|
".*Program exited normally\..*" \
|
78 |
|
|
"continue until end of program"
|
79 |
|
|
|