2014-01-01 03:54:24 +00:00
|
|
|
# Copyright (C) 2009-2014 Free Software Foundation, Inc.
|
2009-03-30 19:54:33 +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 mechanism
|
|
|
|
# exposing values to Python.
|
|
|
|
|
2010-10-01 17:03:50 +00:00
|
|
|
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-02-26 14:06:28 +00:00
|
|
|
if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
|
2009-03-30 19:54:33 +00:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2010-02-24 11:11:17 +00:00
|
|
|
# Skip all tests if Python scripting is not enabled.
|
|
|
|
if { [skip_python_tests] } { continue }
|
2009-03-30 19:54:33 +00:00
|
|
|
|
|
|
|
# The following tests require execution.
|
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
fail "Can't run to main"
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2010-02-28 21:56:50 +00:00
|
|
|
gdb_breakpoint [gdb_get_line_number "Block break here."]
|
|
|
|
gdb_continue_to_breakpoint "Block break here."
|
|
|
|
gdb_py_test_silent_cmd "python bf1 = gdb.selected_frame ()" "get frame" 0
|
|
|
|
|
2013-01-23 19:59:13 +00:00
|
|
|
# Test Frame.architecture() method.
|
|
|
|
gdb_py_test_silent_cmd "python show_arch_str = gdb.execute(\"show architecture\", to_string=True)" "show arch" 0
|
2013-08-29 10:06:18 +00:00
|
|
|
gdb_test "python print (bf1.architecture().name() in show_arch_str)" "True" "test Frame.architecture()"
|
2013-01-23 19:59:13 +00:00
|
|
|
|
2010-02-28 21:56:50 +00:00
|
|
|
# First test that read_var is unaffected by PR 11036 changes.
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print (bf1.read_var(\"i\"))" "\"stuff\"" "test i"
|
|
|
|
gdb_test "python print (bf1.read_var(\"f\"))" "\"foo\"" "test f"
|
|
|
|
gdb_test "python print (bf1.read_var(\"b\"))" "\"bar\"" "test b"
|
2010-02-28 21:56:50 +00:00
|
|
|
|
|
|
|
# Test the read_var function in another block other than the current
|
|
|
|
# block (in this case, the super block). Test thar read_var is reading
|
|
|
|
# the correct variables of i and f but they are the correct value and type.
|
|
|
|
gdb_py_test_silent_cmd "python sb = bf1.block().superblock" "get superblock" 0
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print (bf1.read_var(\"i\", sb))" "1.1.*" "test i = 1.1"
|
|
|
|
gdb_test "python print (bf1.read_var(\"i\", sb).type)" "double" "test double i"
|
|
|
|
gdb_test "python print (bf1.read_var(\"f\", sb))" "2.2.*" "test f = 2.2"
|
|
|
|
gdb_test "python print (bf1.read_var(\"f\", sb).type)" "double" "test double f"
|
2010-02-28 21:56:50 +00:00
|
|
|
|
|
|
|
# And again test another outerblock, this time testing "i" is the
|
|
|
|
# correct value and type.
|
|
|
|
gdb_py_test_silent_cmd "python sb = sb.superblock" "get superblock" 0
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print (bf1.read_var(\"i\", sb))" "99" "test i = 99"
|
|
|
|
gdb_test "python print (bf1.read_var(\"i\", sb).type)" "int" "test int i"
|
2010-02-28 21:56:50 +00:00
|
|
|
|
2009-03-30 19:54:33 +00:00
|
|
|
gdb_breakpoint "f2"
|
|
|
|
gdb_continue_to_breakpoint "breakpoint at f2"
|
2011-01-06 21:10:53 +00:00
|
|
|
gdb_py_test_silent_cmd "python bframe = gdb.selected_frame()" \
|
|
|
|
"get bottommost frame" 0
|
2010-06-08 22:58:03 +00:00
|
|
|
gdb_test "up" ".*" ""
|
2009-03-30 19:54:33 +00:00
|
|
|
|
|
|
|
gdb_py_test_silent_cmd "python f1 = gdb.selected_frame ()" "get second frame" 0
|
|
|
|
gdb_py_test_silent_cmd "python f0 = f1.newer ()" "get first frame" 0
|
|
|
|
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print (f1 == gdb.newest_frame())" False \
|
2011-01-06 21:10:53 +00:00
|
|
|
"selected frame -vs- newest frame"
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print (bframe == gdb.newest_frame())" True \
|
2011-01-06 21:10:53 +00:00
|
|
|
"newest frame -vs- newest frame"
|
|
|
|
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print ('result = %s' % (f0 == f1))" " = False" "test equality comparison (false)"
|
|
|
|
gdb_test "python print ('result = %s' % (f0 == f0))" " = True" "test equality comparison (true)"
|
|
|
|
gdb_test "python print ('result = %s' % (f0 != f1))" " = True" "test inequality comparison (true)"
|
|
|
|
gdb_test "python print ('result = %s' % (f0 != f0))" " = False" "test inequality comparison (false)"
|
|
|
|
gdb_test "python print ('result = %s' % f0.is_valid ())" " = True" "test Frame.is_valid"
|
|
|
|
gdb_test "python print ('result = %s' % f0.name ())" " = f2" "test Frame.name"
|
|
|
|
gdb_test "python print ('result = %s' % (f0.type () == gdb.NORMAL_FRAME))" " = True" "test Frame.type"
|
|
|
|
gdb_test "python print ('result = %s' % (f0.unwind_stop_reason () == gdb.FRAME_UNWIND_NO_REASON))" " = True" "test Frame.type"
|
|
|
|
gdb_test "python print ('result = %s' % gdb.frame_stop_reason_string (gdb.FRAME_UNWIND_INNER_ID))" " = previous frame inner to this frame \\(corrupt stack\\?\\)" "test gdb.frame_stop_reason_string"
|
|
|
|
gdb_test "python print ('result = %s' % f0.pc ())" " = \[0-9\]+" "test Frame.pc"
|
|
|
|
gdb_test "python print ('result = %s' % (f0.older () == f1))" " = True" "test Frame.older"
|
|
|
|
gdb_test "python print ('result = %s' % (f1.newer () == f0))" " = True" "test Frame.newer"
|
|
|
|
gdb_test "python print ('result = %s' % f0.read_var ('variable_which_surely_doesnt_exist'))" \
|
2010-04-14 13:18:55 +00:00
|
|
|
"ValueError: Variable 'variable_which_surely_doesnt_exist' not found.*Error while executing Python code." \
|
2009-03-30 19:54:33 +00:00
|
|
|
"test Frame.read_var - error"
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print ('result = %s' % f0.read_var ('a'))" " = 1" "test Frame.read_var - success"
|
2009-03-30 19:54:33 +00:00
|
|
|
|
2012-12-10 21:22:21 +00:00
|
|
|
gdb_test "python print ('result = %s' % (gdb.selected_frame () == f1))" " = True" "test gdb.selected_frame"
|