1 # Copyright (C) 2008-2019 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. It tests the mechanism
17 # exposing values to Python.
19 load_lib gdb-python.exp
21 standard_testfile python.c python-1.c
23 if {[build_executable $testfile.exp $testfile \
24 [list $srcfile $srcfile2] debug] == -1} {
28 # Start with a fresh gdb.
31 gdb_reinitialize_dir $srcdir/$subdir
33 set remote_source2_py [gdb_remote_download host \
34 ${srcdir}/${subdir}/source2.py]
36 # Do this instead of the skip_python_check.
37 # We want to do some tests when Python is not present.
38 gdb_test_multiple "python print (23)" "verify python support" {
39 -re "not supported.*$gdb_prompt $" {
40 unsupported "python support is disabled"
42 # If Python is not supported, verify that sourcing a python script
44 gdb_test "source $remote_source2_py" \
45 "Error in sourced command file:.*" \
46 "source source2.py when python disabled"
48 # Verify multi-line python commands cause an error.
49 gdb_py_test_multiple "multi-line python command" \
52 "end" "not supported.*"
56 -re "$gdb_prompt $" {}
59 gdb_py_test_multiple "multi-line python command" \
64 # Spawn interactive Python help from a multi-line command, thus, after
67 with_test_prefix "python interactive help" {
68 set test "python; help(); end"
69 gdb_test_multiple "python\nhelp()\nend" $test {
70 -re ".*help utility.*help> $" {
73 # The "quit" must be seen on the output. A buggy GDB
74 # would not display it.
75 gdb_test "quit" "^quit.*leaving help.*" "quit help"
80 gdb_py_test_multiple "show python command" \
81 "define zzq" "Type commands for definition of .* just \"end\"\\.*" \
86 "show user zzq" "User command \"zzq\":.* python.*print \\(23\\).* end"
88 gdb_py_test_multiple "indented multi-line python command" \
91 " print ('hello, world!')" "" \
95 gdb_test "source $remote_source2_py" "yes" "source source2.py"
97 gdb_test "source -s source2.py" "yes" "source -s source2.py"
99 set remote_source2_symlink_notpy \
100 [gdb_remote_download host ${srcdir}/${subdir}/source2.py \
101 [standard_output_file "source2-symlink.notpy"]]
102 set remote_source2_symlink_py [standard_output_file "source2-symlink.py"]
103 remote_file host delete $remote_source2_symlink_py
104 set status [remote_exec host "ln -sf $remote_source2_symlink_notpy $remote_source2_symlink_py"]
105 set test "source -s source2-symlink.py"
106 if {[lindex $status 0] == 0} {
107 gdb_test "source -s $remote_source2_symlink_py" "yes" $test
109 unsupported "$test (host does not support symbolic links)"
112 gdb_test "python print (gdb.current_objfile())" "None"
113 gdb_test "python print (gdb.objfiles())" "\\\[\\\]"
115 # Test http://bugs.python.org/issue4434 workaround in configure.ac
116 gdb_test "python import itertools; print ('IMPOR'+'TED')" "IMPORTED" "pythonX.Y/lib-dynload/*.so"
119 "python x = gdb.execute('printf \"%d\", 23', to_string = True)"
120 gdb_test "python print (x)" "23"
122 gdb_test "python gdb.execute('echo 2\\necho 3\\\\n\\n')" "23" \
124 gdb_test " " "23" "gdb.execute does not affect repeat history"
127 gdb_py_test_multiple "post event insertion" \
130 "class Foo(object):" "" \
131 " def __call__(self):" "" \
132 " global someVal" "" \
134 "gdb.post_event(Foo())" "" \
137 gdb_test "python print (someVal)" "1" "test post event execution"
138 gdb_test "python gdb.post_event(str(1))" "RuntimeError: Posted event is not callable.*" \
139 "test non callable class"
141 send_gdb "python gdb.post_event(lambda: invalid())\n"
143 -re "name 'invalid' is not defined" {
144 pass "test post_event error on receipt"
147 fail "test post_event error on receipt"
151 # Test (no) pagination of the executed command.
152 gdb_test "show height" {Number of lines gdb thinks are in a page is unlimited\.}
154 gdb_test_no_output "set height $lines"
156 set test "verify pagination beforehand"
157 gdb_test_multiple "python print (\"\\n\" * $lines)" $test {
161 -re " for more, q to quit" {
164 -re ", c to continue without paging--$" {
168 gdb_test "q" "Quit.*Error while executing Python.*" "verify pagination beforehand: q"
170 gdb_test "python if gdb.execute('python print (\"\\\\n\" * $lines)', to_string=True) == \"\\n\" * [expr $lines + 1]: print (\"yes\")" "yes" "gdb.execute does not page"
172 set test "verify pagination afterwards"
173 gdb_test_multiple "python print (\"\\n\" * $lines)" $test {
177 -re " for more, q to quit" {
180 -re ", c to continue without paging--$" {
184 gdb_test "q" "Quit.*Error while executing Python.*" "verify pagination afterwards: q"
186 gdb_test_no_output "set height 0"
188 gdb_test_no_output "python a = gdb.execute('help', to_string=True)" "collect help from uiout"
190 gdb_test "python print (a)" ".*aliases -- Aliases of other commands.*" "verify help to uiout"
192 # Test PR 12212, using InfThread.selected_thread() when no inferior is
194 gdb_py_test_silent_cmd "python nothread = gdb.selected_thread()" "Attempt to aquire thread with no inferior" 1
195 gdb_test "python print (nothread == None)" "True" "ensure that no threads are returned"
197 gdb_py_test_multiple "register atexit function" \
200 "def printit(arg):" "" \
202 "atexit.register(printit, 'good bye world')" "" \
207 -re "good bye world" {
208 pass "atexit handling"
211 fail "atexit handling"
215 # Start with a fresh gdb.
216 clean_restart ${testfile}
218 # The following tests require execution.
220 if ![runto_main] then {
221 fail "can't run to main"
225 set lineno [gdb_get_line_number "Break to end."]
228 # Test gdb.decode_line.
229 gdb_test "python gdb.decode_line(\"main.c:43\")" \
230 "gdb.error: No source file named main.c.*" "test decode_line no source named main"
232 gdb_py_test_silent_cmd "python symtab = gdb.decode_line()" "test decode_line current location" 1
233 gdb_test "python print (len(symtab))" "2" "test decode_line current location"
234 gdb_test "python print (symtab\[0\])" "None" "test decode_line expression parse"
235 gdb_test "python print (len(symtab\[1\]))" "1" "test decode_line current location"
237 if { [is_remote host] } {
238 set python_c [string_to_regexp "python.c"]
240 set python_c [string_to_regexp "gdb.python/python.c"]
242 gdb_test "python print (symtab\[1\]\[0\].symtab)" ".*${python_c}" "test decode_line current location filename"
243 gdb_test "python print (symtab\[1\]\[0\].line)" "$lineno" "test decode_line current location line number"
245 gdb_py_test_silent_cmd "python symtab = gdb.decode_line(\"python.c:26 if foo\")" "test decode_line python.c:26" 1
246 gdb_test "python print (len(symtab))" "2" "test decode_line python.c:26 length"
247 gdb_test "python print (symtab\[0\])" "if foo" "test decode_line expression parse"
248 gdb_test "python print (len(symtab\[1\]))" "1" "test decode_line python.c:26 length"
249 gdb_test "python print (symtab\[1\]\[0\].symtab)" ".*${python_c}" "test decode_line python.c:26 filename"
250 gdb_test "python print (symtab\[1\]\[0\].line)" "26" "test decode_line python.c:26 line number"
252 gdb_test "python gdb.decode_line(\"randomfunc\")" \
253 "gdb.error: Function \"randomfunc\" not defined.*" "test decode_line randomfunc"
254 gdb_py_test_silent_cmd "python symtab = gdb.decode_line(\"func1\")" "test decode_line func1()" 1
255 gdb_test "python print (len(symtab))" "2" "test decode_line func1 length"
256 gdb_test "python print (len(symtab\[1\]))" "1" "test decode_line func1 length"
258 if { [is_remote host] } {
259 set python_1_c [string_to_regexp "python-1.c"]
261 set python_1_c [string_to_regexp "gdb.python/python-1.c"]
263 gdb_test "python print (symtab\[1\]\[0\].symtab)" ".*${python_1_c}" "test decode_line func1 filename"
265 # Set a default value for func1_lineno in case we fail to fetch the line number
267 set func1_lineno "noline"
269 # Fetch the line GDB thinks func1 starts at. This may change depending
270 # on the architecture and on how GDB handles the prologue of the function.
271 gdb_test_multiple "info line func1" "info line func1" {
272 -re "Line ($decimal) of .* starts at address $hex <func1> and ends at $hex <func1\\+$decimal>\.\[\r\n\]+$gdb_prompt $" {
273 # Fetch the line number.
274 set func1_lineno $expect_out(1,string)
278 gdb_test "python print (symtab\[1\]\[0\].line)" "$func1_lineno" "test decode_line func1 line number"
279 gdb_py_test_silent_cmd {python symtab = gdb.decode_line ("func1,func2")} \
280 "test decode_line func1,func2" 1
281 gdb_test {python print (symtab[0])} ",func2" "stop at comma in linespec"
283 gdb_py_test_silent_cmd "python symtab = gdb.decode_line(\"*0\")" "Test decode_line *0" 1
284 gdb_test "python print (len(symtab))" "2" "test decode_line *0 result length"
285 gdb_test "python print (symtab\[0\])" "None" "test decode_line *0 unparsed"
286 gdb_test "python print (len(symtab\[1\]))" "1" "test decode_line *0 locations length"
287 gdb_test "python print (symtab\[1\]\[0\].symtab)" "None" "test decode_line *0 filename"
288 gdb_test "python print (symtab\[1\]\[0\].pc)" "0" "test decode_line *0 pc"
291 gdb_test "python print (sys.stderr)" ".*gdb.GdbOutputErrorFile (instance|object) at.*" "test stderr location"
292 gdb_test "python print (sys.stdout)" ".*gdb.GdbOutputFile (instance|object) at.*" "test stdout location"
293 gdb_test "python gdb.write(\"Foo\\n\")" "Foo" "test default write"
294 gdb_test "python gdb.write(\"Error stream\\n\", stream=gdb.STDERR)" "Error stream" "test stderr write"
295 gdb_test "python gdb.write(\"Normal stream\\n\", stream=gdb.STDOUT)" "Normal stream" "test stdout write"
296 gdb_test "python gdb.write(\"Log stream\\n\", stream=gdb.STDLOG)" "Log stream" "test stdlog write"
298 # Turn on full stack printing for subsequent tests.
299 gdb_py_test_silent_cmd "set python print-stack full" \
300 "Set print-stack full for prompt tests" 1
302 # Test prompt substituion
304 gdb_py_test_multiple "prompt substitution" \
306 "someCounter = 0" "" \
307 "def prompt(current):" "" \
308 " global someCounter" "" \
309 " if (current == \"testfake \"):" "" \
311 " someCounter = someCounter + 1" "" \
312 " return \"py prompt \" + str (someCounter) + \" \"" "" \
315 gdb_py_test_multiple "prompt substitution readline" \
318 "def program_prompt(current):" "" \
319 " global pCounter" "" \
320 " if (current == \">\"):" "" \
321 " pCounter = pCounter + 1" "" \
322 " return \"python line \" + str (pCounter) + \": \"" "" \
326 set newprompt "py prompt 1"
327 set newprompt2 "py prompt 2"
328 set testfake "testfake"
330 gdb_test_multiple "python gdb.prompt_hook = prompt" "set the hook" {
331 -re "\[\r\n\]$newprompt $" {
336 gdb_test_multiple "set prompt testfake " "set testfake prompt in GDB" {
337 -re "\[\r\n\]$testfake $" {
338 pass "set prompt testfake"
342 gdb_test_multiple "show prompt" "show testfake prompt" {
343 -re "Gdb's prompt is \"$testfake \"..* $" {
344 pass "show prompt shows guarded prompt"
348 gdb_test_multiple "set prompt blah " "set blah in GDB" {
349 -re "\[\r\n\]$newprompt2 $" {
350 pass "set prompt blah overriden"
354 gdb_test_multiple "python gdb.prompt_hook = None" "delete hook" {
355 -re "\[\r\n\]$newprompt2 $" {
356 pass "delete old hook"
360 gdb_test_multiple "set prompt $gdb_prompt " "set default prompt" {
361 -re "\[\r\n\]$gdb_prompt $" {
362 pass "set default prompt"
367 gdb_test_multiple "pwd" "pwd" {
368 -re "Working directory (.*)\\.\[\r\n\]+$gdb_prompt $" {
369 set working_dir $expect_out(1,string)
373 gdb_test_multiple "python gdb.prompt_hook = program_prompt" "set the hook" {
374 -re "\[\r\n\]$gdb_prompt $" {
375 pass "set programming hook"
379 gdb_test_multiple "python" "test we ignore substituion for seconday prompts" {
381 pass "readline secondary are not substituted"
385 gdb_test_multiple "end" "end programming" {
386 -re "\[\r\n\]$gdb_prompt $" {
387 pass "end programming"
391 gdb_py_test_multiple "prompt substitution readline" \
393 "import gdb.command.prompt" "" \
396 gdb_test_multiple "set extended-prompt one two three " \
397 "set basic extended prompt" {
398 -re "\[\r\n\]one two three $" {
399 pass "set basic extended prompt"
403 gdb_test_multiple "set extended-prompt \\w " \
404 "set extended prompt working directory" {
405 -re "\[\r\n\][string_to_regexp $working_dir] $" {
406 pass "set extended prompt working directory"
410 gdb_test_multiple "set extended-prompt some param \\p{python print-stack} " \
411 "set extended prompt parameter" {
412 -re "\[\r\n\]some param full $" {
413 pass "set extended prompt parameter"
417 # Start with a fresh gdb.
418 clean_restart ${testfile}
420 # The following tests require execution.
422 if ![runto_main] then {
423 fail "can't run to main"
427 # print-stack settings
428 gdb_test "show python print-stack" \
429 "The mode of Python stack printing on error is \"message\".*" \
430 "Test print-stack show setting. Default is message."
431 gdb_py_test_silent_cmd "set python print-stack full" \
432 "Test print-stack set setting to full" 1
433 gdb_test "show python print-stack" \
434 "The mode of Python stack printing on error is \"full\".*" \
435 "Test print-stack show setting to full"
436 gdb_py_test_silent_cmd "set python print-stack none" \
437 "Test print-stack set setting to none" 1
438 gdb_test "show python print-stack" \
439 "The mode of Python stack printing on error is \"none\".*" \
440 "test print-stack show setting to none"
442 gdb_py_test_silent_cmd "set python print-stack message" \
443 "Test print-stack set setting to message" 1
445 gdb_py_test_multiple "prompt substitution readline" \
448 "def error_prompt(current):" "" \
449 " raise RuntimeError(\"Python exception called\")" "" \
452 gdb_test_multiple "python gdb.prompt_hook = error_prompt" "set the hook" {
453 -re "Python Exception (exceptions.RuntimeError|<(type 'exceptions.|class ')RuntimeError'>) Python exception called.*" {
458 gdb_py_test_silent_cmd "python gdb.prompt_hook = None" \
459 "set the hook to default" 1
461 gdb_py_test_silent_cmd "set python print-stack full" \
462 "set print-stack full for prompt error test" 1
464 gdb_test_multiple "python gdb.prompt_hook = error_prompt" "set the hook" {
465 -re "Traceback.*File.*line.*RuntimeError.*Python exception called.*" {
470 gdb_py_test_silent_cmd "python gdb.prompt_hook = None" \
471 "set the hook to default" 1
473 # Start with a fresh gdb.
474 clean_restart ${testfile}
476 # The following tests require execution.
478 if ![runto_main] then {
479 fail "can't run to main"
483 runto [gdb_get_line_number "Break at func2 call site."]
485 gdb_py_test_silent_cmd "python line = gdb.selected_frame().find_sal().line" "Get line number of func2 call site" 1
486 gdb_test "python print (gdb.find_pc_line(gdb.selected_frame().pc()).line == line)" "True" "test find_pc_line at func2 call site"
488 gdb_py_test_silent_cmd "step" "Step into func2" 1
489 gdb_py_test_silent_cmd "up" "Step out of func2" 1
491 gdb_test "python print (gdb.find_pc_line(gdb.selected_frame().pc()).line > line)" "True" "test find_pc_line with resume address"
493 gdb_test_no_output "set variable \$cvar1 = 23" "set convenience variable"
494 gdb_test "python print(gdb.convenience_variable('cvar1'))" "23"
495 gdb_test "python print(gdb.convenience_variable('cvar2'))" "None"
496 gdb_test_no_output "python gdb.set_convenience_variable('cvar1', 89)" \
497 "change convenience variable from python"
498 gdb_test "python print(gdb.convenience_variable('cvar1'))" "89" \
499 "print new value of convenience variable from python"
500 gdb_test "print \$cvar1" " = 89" \
501 "print new value of convenience variable from CLI"
502 gdb_test_no_output "python gdb.set_convenience_variable('cvar3', -5)" \
503 "make convenience variable from python"
504 gdb_test "python print(gdb.convenience_variable('cvar3'))" "-5" \
505 "print value of new convenience variable from python"
506 gdb_test_no_output "python gdb.set_convenience_variable('cvar3', None)" \
507 "reset convenience variable from python"
508 gdb_test "python print(gdb.convenience_variable('cvar3'))" "None" \
509 "print reset convenience variable from python"
510 gdb_test "print \$cvar3" "= void" \
511 "print reset convenience variable from CLI"
513 # Test PR 23669, the following would invoke the "commands" command instead of
515 gdb_test "python gdb.execute(\"show commands\")" "$decimal print \\\$cvar3.*"