1 # Copyright
(C
) 2008-2015 Free Software Foundation
, Inc.
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.
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.
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
/>.
16 # This file is part of the GDB testsuite.
18 load_lib gdb
-python.exp
20 if {[skip_shlib_tests
]} {
26 set libfile
"py-shared-sl"
27 set libsrc $
{libfile
}.c
28 set library
[standard_output_file $
{libfile
}.sl
]
30 if { [gdb_compile_shlib $
{srcdir
}/$
{subdir
}/$
{libsrc
} $
{library
} "debug"] != "" } {
31 untested
"Could not compile shared library."
35 set exec_opts
[list debug shlib
=$
{library
}]
37 if { [gdb_compile $
{srcdir
}/$
{subdir
}/$
{srcfile
} $
{binfile
} executable $exec_opts
] != "" } {
38 untested
"Could not compile $binfile."
42 # Start with a fresh gdb.
43 clean_restart $testfile
44 gdb_load_shlibs $
{library
}
46 # Skip all tests
if Python scripting is not enabled.
47 if { [skip_python_tests
] } { continue }
49 # The following tests require execution.
51 if ![runto_main
] then {
52 fail
"Can't run to main"
56 runto
[gdb_get_line_number
"Break to end."]
59 gdb_test
"p &func1" "" "func1 address"
60 gdb_py_test_silent_cmd
"python func1 = gdb.history(0)" "Aquire func1 address" 1
61 if { $gdb_py_is_py3k
== 1 } {
62 gdb_py_test_silent_cmd
"python long = int" "" 0
64 gdb_test
"python print (gdb.solib_name(long(func1)))" "py-shared-sl.sl" "test func1 solib location"
66 gdb_test
"p &main" "" "main address"
67 gdb_py_test_silent_cmd
"python main = gdb.history(0)" "Aquire main address" 1
68 gdb_test
"python print (gdb.solib_name(long(main)))" "None" "test main solib location"