OSDN Git Service

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