GDB copyright headers update after running GDB's copyright.py script.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-objfile.exp
CommitLineData
618f726f 1# Copyright (C) 2011-2016 Free Software Foundation, Inc.
29703da4
PM
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# This file is part of the GDB testsuite. It tests the program space
17# support in Python.
18
29703da4
PM
19load_lib gdb-python.exp
20
b4a58790 21standard_testfile
29703da4
PM
22
23if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
24 return -1
25}
26
27# Skip all tests if Python scripting is not enabled.
28if { [skip_python_tests] } { continue }
29
30if ![runto_main] then {
31 fail "Can't run to main"
32 return 0
33}
34
6dddd6a5
DE
35set python_error_text "Error while executing Python code\\."
36
29703da4
PM
37gdb_py_test_silent_cmd "python sym = gdb.lookup_symbol(\"some_var\")" \
38 "Find a symbol in objfile" 1
39gdb_py_test_silent_cmd "python objfile = sym\[0\].symtab.objfile" \
40 "Get backing object file" 1
41
6dddd6a5 42gdb_test "python print (objfile.filename)" "${testfile}" \
14ea52ee 43 "Get objfile file name"
7c50a931 44
3a8b707a
DE
45gdb_test "python print (objfile.username)" "${testfile}" \
46 "Get objfile user name"
47
6dddd6a5 48gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").filename)" \
d60a9221 49 "${testfile}" "print lookup_objfile filename"
6dddd6a5
DE
50gdb_test "python print (gdb.lookup_objfile (\"junk\"))" \
51 "Objfile not found\\.\r\n${python_error_text}"
52
7c50a931
DE
53set binfile_build_id [get_build_id $binfile]
54if [string compare $binfile_build_id ""] {
55 verbose -log "binfile_build_id = $binfile_build_id"
56 gdb_test "python print (objfile.build_id)" "$binfile_build_id" \
57 "Get objfile build id"
6dddd6a5 58 gdb_test "python print (gdb.lookup_objfile (\"$binfile_build_id\", by_build_id=True).filename)" \
d60a9221 59 "${testfile}" "print lookup_objfile filename by build-id"
7c50a931
DE
60} else {
61 unsupported "build-id is not supported by the compiler"
62}
63
6dddd6a5
DE
64# Other lookup_objfile_by_build_id tests we can do, even if compiler doesn't
65# support them.
66gdb_test "python print (gdb.lookup_objfile (\"foo\", by_build_id=True))" \
d60a9221
SDJ
67 "Not a valid build id\\.\r\n${python_error_text}" \
68 "print invalid file lookup_objfile by build-id"
6dddd6a5 69gdb_test "python print (gdb.lookup_objfile (\"1234abcdef\", by_build_id=True))" \
d60a9221
SDJ
70 "Objfile not found\\.\r\n${python_error_text}" \
71 "print invalid file lookup_objfile by build-id 2"
6dddd6a5 72
d096d8c1
DE
73gdb_test "python print (objfile.progspace)" "<gdb\.Progspace object at .*>" \
74 "Get objfile program space"
9325cb04 75gdb_test "python print (objfile.is_valid())" "True" \
29703da4
PM
76 "Get objfile validity"
77gdb_unload
9325cb04 78gdb_test "python print (objfile.is_valid())" "False" \
29703da4 79 "Get objfile validity after unload"
02be9a71
DE
80
81gdb_py_test_silent_cmd "python objfile.random_attribute = 42" \
82 "Set random attribute in objfile" 1
83gdb_test "python print (objfile.random_attribute)" "42" \
84 "Verify set of random attribute in objfile"
86e4ed39 85
3a8b707a
DE
86# Verify invalid objfile handling.
87
88if { [gdb_unload] < 0 } {
89 fail "unload all files"
90 return -1
91}
92
40d2f8d6 93gdb_test "python print(objfile.filename)" "None" \
3a8b707a 94 "objfile.filename after objfile is unloaded"
40d2f8d6 95gdb_test "python print(objfile.username)" "None" \
3a8b707a
DE
96 "objfile.username after objfile is unloaded"
97
86e4ed39
DE
98# Now build another copy of the testcase, this time without debug info.
99
100if { [prepare_for_testing ${testfile}.exp ${testfile}2 ${srcfile} {nodebug ldflags=-Wl,--strip-debug}] } {
101 return -1
102}
103
104if ![runto_main] {
105 fail "Can't run to main"
106 return 0
107}
108
dac804df 109gdb_py_test_silent_cmd "python objfile = gdb.objfiles()\[0\]" \
86e4ed39
DE
110 "Get no-debug objfile file" 1
111
a0be3e44
DE
112gdb_test "python print (objfile.owner)" "None" \
113 "Test owner of real objfile."
114
86e4ed39
DE
115gdb_test "p main" "= {<text variable, no debug info>} $hex <main>" \
116 "print main without debug info"
117
118gdb_py_test_silent_cmd "python objfile.add_separate_debug_file(\"${binfile}\")" \
119 "Add separate debug file file" 1
120
121gdb_py_test_silent_cmd "python sep_objfile = gdb.objfiles()\[0\]" \
122 "Get separate debug info objfile" 1
123
a0be3e44
DE
124gdb_test "python print (sep_objfile.owner.filename)" "${testfile}2" \
125 "Test owner of separate debug file"
126
3a8b707a
DE
127gdb_test "python print (sep_objfile.owner.username)" "${testfile}2" \
128 "Test user-name of owner of separate debug file"
129
86e4ed39
DE
130gdb_test "p main" "= {int \\(\\)} $hex <main>" \
131 "print main with debug info"
6dddd6a5
DE
132
133# Separate debug files are not findable.
134if { [get_python_valueof "sep_objfile.build_id" "None"] != "None" } {
135 gdb_test "python print (gdb.lookup_objfile (sep_objfile.build_id, by_build_id=True))" \
d60a9221
SDJ
136 "Objfile not found\\.\r\n${python_error_text}" \
137 "print lookup_objfile of separate debug file"
6dddd6a5 138}
e02c96a7
DE
139
140# An objfile that was a symlink to a differently named file is still
141# findable with its original name.
142set symlink_binary [standard_output_file "symlink-binary"]
143remote_exec host "rm -f ${symlink_binary}"
144remote_exec host "ln -sf ${testfile} ${symlink_binary}"
145if [remote_file host exists "${symlink_binary}"] {
146 clean_restart "${symlink_binary}"
147 gdb_test "python print (gdb.lookup_objfile (\"${symlink_binary}\").filename)" \
148 "${testfile}" "gdb.lookup_objfile of symlinked binary"
149}
This page took 0.578794 seconds and 4 git commands to generate.