2016-01-01 04:33:14 +00:00
|
|
|
# Copyright (C) 2011-2016 Free Software Foundation, Inc.
|
2011-03-17 09:36:17 +00:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# This file is part of the GDB testsuite. It tests the program space
|
|
|
|
# support in Python.
|
|
|
|
|
|
|
|
load_lib gdb-python.exp
|
|
|
|
|
* gdb.python/lib-types.exp: Use standard_testfile,
prepare_for_testing.
* gdb.python/py-block.exp: Use standard_testfile.
* gdb.python/py-breakpoint.exp: Use standard_testfile.
* gdb.python/py-events.exp: Use standard_testfile,
standard_output_file.
* gdb.python/py-evsignal.exp: Use standard_testfile.
* gdb.python/py-evethreads.exp: Use standard_testfile.
* gdb.python/py-explore-cc.exp: Use standard_testfile.
* gdb.python/py-explore.exp: Use standard_testfile.
* gdb.python/py-finish-breakpoint.exp: Use standard_testfile,
standard_output_file.
* gdb.python/py-finish-breakpoint2.exp: Use standard_testfile,
prepare_for_testing.
* gdb.python/py-frame-inline.exp: Use standard_testfile.
* gdb.python/py-frame.exp: Use standard_testfile.
* gdb.python/py-inferior.exp: Use standard_testfile.
* gdb.python/py-infthread.exp: Use standard_testfile.
* gdb.python/py-mi.exp: Use standard_testfile.
* gdb.python/py-objfile-script.exp: Use standard_testfile,
build_executable.
* gdb.python/py-objfile.exp: Use standard_testfile.
* gdb.python/py-pp-maint.exp: Use standard_testfile,
prepare_for_testing.
* gdb.python/py-prettyprint.exp: Use standard_testfile.
* gdb.python/py-progspace.exp: Use standard_testfile,
build_executable.
* gdb.python/py-prompt.exp: Use standard_testfile,
build_executable.
* gdb.python/py-section-script.exp: Use standard_testfile,
build_executable.
* gdb.python/py-shared.exp: Use standard_testfile,
standard_output_file, clean_restart.
* gdb.python/py-symbol.exp: Use standard_output_file,
prepare_for_testing.
* gdb.python/py-symtab.exp: Use standard_output_file,
prepare_for_testing
* gdb.python/py-template.exp: Use standard_testfile.
* gdb.python/py-type.exp: Use standard_testfile.
* gdb.python/py-value-cc.exp: Use standard_testfile.
* gdb.python/py-value.exp: Use standard_testfile.
* gdb.python/python.exp: Use standard_testfile, build_executable.
2012-06-22 17:59:33 +00:00
|
|
|
standard_testfile
|
2011-03-17 09:36:17 +00:00
|
|
|
|
|
|
|
if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Skip all tests if Python scripting is not enabled.
|
|
|
|
if { [skip_python_tests] } { continue }
|
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
fail "Can't run to main"
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2014-12-12 17:48:13 +00:00
|
|
|
set python_error_text "Error while executing Python code\\."
|
|
|
|
|
2011-03-17 09:36:17 +00:00
|
|
|
gdb_py_test_silent_cmd "python sym = gdb.lookup_symbol(\"some_var\")" \
|
|
|
|
"Find a symbol in objfile" 1
|
|
|
|
gdb_py_test_silent_cmd "python objfile = sym\[0\].symtab.objfile" \
|
|
|
|
"Get backing object file" 1
|
|
|
|
|
2014-12-12 17:48:13 +00:00
|
|
|
gdb_test "python print (objfile.filename)" "${testfile}" \
|
2014-10-13 21:50:32 +00:00
|
|
|
"Get objfile file name"
|
2014-12-04 19:32:24 +00:00
|
|
|
|
2015-01-27 18:13:52 +00:00
|
|
|
gdb_test "python print (objfile.username)" "${testfile}" \
|
|
|
|
"Get objfile user name"
|
|
|
|
|
2014-12-12 17:48:13 +00:00
|
|
|
gdb_test "python print (gdb.lookup_objfile (\"${testfile}\").filename)" \
|
2015-07-28 21:38:14 +00:00
|
|
|
"${testfile}" "print lookup_objfile filename"
|
2014-12-12 17:48:13 +00:00
|
|
|
gdb_test "python print (gdb.lookup_objfile (\"junk\"))" \
|
|
|
|
"Objfile not found\\.\r\n${python_error_text}"
|
|
|
|
|
2014-12-04 19:32:24 +00:00
|
|
|
set binfile_build_id [get_build_id $binfile]
|
|
|
|
if [string compare $binfile_build_id ""] {
|
|
|
|
verbose -log "binfile_build_id = $binfile_build_id"
|
|
|
|
gdb_test "python print (objfile.build_id)" "$binfile_build_id" \
|
|
|
|
"Get objfile build id"
|
2014-12-12 17:48:13 +00:00
|
|
|
gdb_test "python print (gdb.lookup_objfile (\"$binfile_build_id\", by_build_id=True).filename)" \
|
2015-07-28 21:38:14 +00:00
|
|
|
"${testfile}" "print lookup_objfile filename by build-id"
|
2014-12-04 19:32:24 +00:00
|
|
|
} else {
|
|
|
|
unsupported "build-id is not supported by the compiler"
|
|
|
|
}
|
|
|
|
|
2014-12-12 17:48:13 +00:00
|
|
|
# Other lookup_objfile_by_build_id tests we can do, even if compiler doesn't
|
|
|
|
# support them.
|
|
|
|
gdb_test "python print (gdb.lookup_objfile (\"foo\", by_build_id=True))" \
|
2015-07-28 21:38:14 +00:00
|
|
|
"Not a valid build id\\.\r\n${python_error_text}" \
|
|
|
|
"print invalid file lookup_objfile by build-id"
|
2014-12-12 17:48:13 +00:00
|
|
|
gdb_test "python print (gdb.lookup_objfile (\"1234abcdef\", by_build_id=True))" \
|
2015-07-28 21:38:14 +00:00
|
|
|
"Objfile not found\\.\r\n${python_error_text}" \
|
|
|
|
"print invalid file lookup_objfile by build-id 2"
|
2014-12-12 17:48:13 +00:00
|
|
|
|
2014-10-17 17:57:26 +00:00
|
|
|
gdb_test "python print (objfile.progspace)" "<gdb\.Progspace object at .*>" \
|
|
|
|
"Get objfile program space"
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print (objfile.is_valid())" "True" \
|
2011-03-17 09:36:17 +00:00
|
|
|
"Get objfile validity"
|
|
|
|
gdb_unload
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print (objfile.is_valid())" "False" \
|
2011-03-17 09:36:17 +00:00
|
|
|
"Get objfile validity after unload"
|
2014-10-31 00:05:17 +00:00
|
|
|
|
|
|
|
gdb_py_test_silent_cmd "python objfile.random_attribute = 42" \
|
|
|
|
"Set random attribute in objfile" 1
|
|
|
|
gdb_test "python print (objfile.random_attribute)" "42" \
|
|
|
|
"Verify set of random attribute in objfile"
|
2014-12-04 20:01:22 +00:00
|
|
|
|
2015-01-27 18:13:52 +00:00
|
|
|
# Verify invalid objfile handling.
|
|
|
|
|
|
|
|
if { [gdb_unload] < 0 } {
|
|
|
|
fail "unload all files"
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2015-04-15 15:54:33 +00:00
|
|
|
gdb_test "python print(objfile.filename)" "None" \
|
2015-01-27 18:13:52 +00:00
|
|
|
"objfile.filename after objfile is unloaded"
|
2015-04-15 15:54:33 +00:00
|
|
|
gdb_test "python print(objfile.username)" "None" \
|
2015-01-27 18:13:52 +00:00
|
|
|
"objfile.username after objfile is unloaded"
|
|
|
|
|
2014-12-04 20:01:22 +00:00
|
|
|
# Now build another copy of the testcase, this time without debug info.
|
|
|
|
|
|
|
|
if { [prepare_for_testing ${testfile}.exp ${testfile}2 ${srcfile} {nodebug ldflags=-Wl,--strip-debug}] } {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
if ![runto_main] {
|
|
|
|
fail "Can't run to main"
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-07-29 14:16:38 +00:00
|
|
|
gdb_py_test_silent_cmd "python objfile = gdb.objfiles()\[0\]" \
|
2014-12-04 20:01:22 +00:00
|
|
|
"Get no-debug objfile file" 1
|
|
|
|
|
2014-12-08 16:50:48 +00:00
|
|
|
gdb_test "python print (objfile.owner)" "None" \
|
|
|
|
"Test owner of real objfile."
|
|
|
|
|
2014-12-04 20:01:22 +00:00
|
|
|
gdb_test "p main" "= {<text variable, no debug info>} $hex <main>" \
|
|
|
|
"print main without debug info"
|
|
|
|
|
|
|
|
gdb_py_test_silent_cmd "python objfile.add_separate_debug_file(\"${binfile}\")" \
|
|
|
|
"Add separate debug file file" 1
|
|
|
|
|
|
|
|
gdb_py_test_silent_cmd "python sep_objfile = gdb.objfiles()\[0\]" \
|
|
|
|
"Get separate debug info objfile" 1
|
|
|
|
|
2014-12-08 16:50:48 +00:00
|
|
|
gdb_test "python print (sep_objfile.owner.filename)" "${testfile}2" \
|
|
|
|
"Test owner of separate debug file"
|
|
|
|
|
2015-01-27 18:13:52 +00:00
|
|
|
gdb_test "python print (sep_objfile.owner.username)" "${testfile}2" \
|
|
|
|
"Test user-name of owner of separate debug file"
|
|
|
|
|
2014-12-04 20:01:22 +00:00
|
|
|
gdb_test "p main" "= {int \\(\\)} $hex <main>" \
|
|
|
|
"print main with debug info"
|
2014-12-12 17:48:13 +00:00
|
|
|
|
|
|
|
# Separate debug files are not findable.
|
|
|
|
if { [get_python_valueof "sep_objfile.build_id" "None"] != "None" } {
|
|
|
|
gdb_test "python print (gdb.lookup_objfile (sep_objfile.build_id, by_build_id=True))" \
|
2015-07-28 21:38:14 +00:00
|
|
|
"Objfile not found\\.\r\n${python_error_text}" \
|
|
|
|
"print lookup_objfile of separate debug file"
|
2014-12-12 17:48:13 +00:00
|
|
|
}
|
2015-01-14 01:00:31 +00:00
|
|
|
|
|
|
|
# An objfile that was a symlink to a differently named file is still
|
|
|
|
# findable with its original name.
|
|
|
|
set symlink_binary [standard_output_file "symlink-binary"]
|
|
|
|
remote_exec host "rm -f ${symlink_binary}"
|
|
|
|
remote_exec host "ln -sf ${testfile} ${symlink_binary}"
|
|
|
|
if [remote_file host exists "${symlink_binary}"] {
|
|
|
|
clean_restart "${symlink_binary}"
|
|
|
|
gdb_test "python print (gdb.lookup_objfile (\"${symlink_binary}\").filename)" \
|
|
|
|
"${testfile}" "gdb.lookup_objfile of symlinked binary"
|
|
|
|
}
|