1 |
330 |
jeremybenn |
# Copyright (C) 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 |
|
|
# This file is part of the GDB testsuite. It tests the mechanism
|
17 |
|
|
# exposing inferior threads to Python.
|
18 |
|
|
|
19 |
|
|
if $tracelevel then {
|
20 |
|
|
strace $tracelevel
|
21 |
|
|
}
|
22 |
|
|
|
23 |
|
|
set testfile "py-infthread"
|
24 |
|
|
set srcfile ${testfile}.c
|
25 |
|
|
if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
|
26 |
|
|
return -1
|
27 |
|
|
}
|
28 |
|
|
|
29 |
|
|
# Start with a fresh gdb.
|
30 |
|
|
clean_restart ${testfile}
|
31 |
|
|
|
32 |
|
|
# Skip all tests if Python scripting is not enabled.
|
33 |
|
|
if { [skip_python_tests] } { continue }
|
34 |
|
|
|
35 |
|
|
# The following tests require execution.
|
36 |
|
|
|
37 |
|
|
if ![runto_main] then {
|
38 |
|
|
fail "Can't run to main"
|
39 |
|
|
return 0
|
40 |
|
|
}
|
41 |
|
|
|
42 |
|
|
runto [gdb_get_line_number "Break here."]
|
43 |
|
|
|
44 |
|
|
# Test basic gdb.Inferior attributes and methods.
|
45 |
|
|
|
46 |
|
|
gdb_py_test_silent_cmd "python t0 = gdb.selected_thread ()" "test gdb.selected_thread" 1
|
47 |
|
|
gdb_test "python print t0" "\\" "verify InferiorThread object"
|
48 |
|
|
gdb_test "python print 'result =', t0.num" " = \[0-9\]+" "test Inferior.num"
|
49 |
|
|
gdb_test "python print 'result =', t0.ptid" " = \\(\[0-9\]+, \[0-9\]+, \[0-9\]+\\)" "test InferiorThread.ptid"
|
50 |
|
|
|
51 |
|
|
gdb_test "python print 'result =', t0.is_stopped ()" " = True" "test InferiorThread.is_stopped"
|
52 |
|
|
gdb_test "python print 'result =', t0.is_running ()" " = False" "test InferiorThread.is_running"
|
53 |
|
|
gdb_test "python print 'result =', t0.is_exited ()" " = False" "test InferiorThread.is_exited"
|