
The "python" command (and the Python implementation of the gdb "source" command) does not handle Python exceptions in the same way as other gdb-facing Python code. In particular, exceptions are turned into a generic error rather than being routed through gdbpy_handle_exception, which takes care of converting to 'quit' as appropriate. I think this was done this way because PyRun_SimpleFile and friends do not propagate the Python exception -- they simply indicate that one occurred. This patch reimplements these functions to respect the general gdb convention here. As a bonus, some Windows-specific code can be removed, as can the _execute_file function. The bulk of this change is tweaking the test suite to match the new way that exceptions are displayed. These changes are largely uninteresting. However, it's worth pointing out the py-error.exp change. Here, the failure changes because the test changes the host charset to something that isn't supported by Python. This then results in a weird error in the new setup. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31354 Acked-By: Tom de Vries <tdevries@suse.de> Reviewed-By: Eli Zaretskii <eliz@gnu.org>
75 lines
3.3 KiB
Text
75 lines
3.3 KiB
Text
# Copyright (C) 2015-2024 Free Software Foundation, Inc.
|
|
|
|
# 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 lazy string support
|
|
# not tested by py-prettyprinter.exp.
|
|
|
|
load_lib gdb-python.exp
|
|
|
|
require allow_python_tests
|
|
|
|
standard_testfile
|
|
|
|
if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
|
|
return -1
|
|
}
|
|
|
|
if ![runto_main ] {
|
|
return -1
|
|
}
|
|
|
|
gdb_breakpoint [gdb_get_line_number "break here"]
|
|
gdb_continue_to_breakpoint "break here"
|
|
|
|
gdb_py_test_silent_cmd "python null = gdb.parse_and_eval(\"null\")" "get null value" 1
|
|
|
|
gdb_py_test_silent_cmd "python nullstr = null.lazy_string(length=0)" "create a null lazy string" 1
|
|
gdb_test "python print (nullstr.length)" "0" "null lazy string length"
|
|
gdb_test "python print (nullstr.address)" "0" "null lazy string address"
|
|
gdb_test "python print (nullstr.type)" "const char \\*" "null lazy string type"
|
|
gdb_test "python print(nullstr.value())" \
|
|
"gdb.MemoryError.*: Cannot create a value from NULL.*Error occurred in Python.*" \
|
|
"create value from NULL"
|
|
gdb_test "python print(null.lazy_string(length=3).value())" \
|
|
"gdb.MemoryError.*: Cannot create a lazy string with address 0x0, and a non-zero length.*Error occurred in Python.*" \
|
|
"null lazy string with non-zero length"
|
|
gdb_test "python print(null.lazy_string(length=-2))" \
|
|
"ValueError.*: Invalid length.*Error occurred in Python.*" \
|
|
"bad length"
|
|
|
|
foreach var_spec { { "ptr" "pointer" "const char \\*" -1 } \
|
|
{ "array" "array" "const char \\[6\\]" 6 } \
|
|
{ "typedef_ptr" "typedef pointer" "pointer" -1 } } {
|
|
set var [lindex $var_spec 0]
|
|
set value [lindex $var_spec 1]
|
|
set type [lindex $var_spec 2]
|
|
set length [lindex $var_spec 3]
|
|
with_test_prefix $var {
|
|
gdb_test "print $var" "\"$value\""
|
|
gdb_py_test_silent_cmd "python $var = gdb.history (0)" "get value from history" 1
|
|
gdb_py_test_silent_cmd "python l$var = $var.lazy_string()" "acquire lazy string" 1
|
|
gdb_test "python print ($var.type)" "$type" "string type name equality"
|
|
gdb_test "python print (l$var.type)" "$type" "lazy-string type name equality"
|
|
gdb_test "python print (l$var.length)" "$length" "lazy string length"
|
|
gdb_test "python print (l$var.value())" "\"$value\"" "lazy string value"
|
|
gdb_py_test_silent_cmd "python l2$var = $var.lazy_string(length=2)" "acquire lazy string, length 2" 1
|
|
gdb_test "python print (l2$var.length)" "2" "lazy string length 2"
|
|
gdb_test "python print (l2$var.value())" "\"[string range $value 0 1]\"" "lazy string length 2 value"
|
|
# This test will have to wait until gdb can handle it. There's no way,
|
|
# currently, to internally specify an array of length zero in the C
|
|
# language support. PR 20786
|
|
#gdb_test "python print ($var.lazy_string(length=0).value())" "\"\"" "empty lazy string value"
|
|
}
|
|
}
|