gdb
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / python.exp
CommitLineData
4c38e0a4 1# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
d57a3c85
TJB
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 mechanism
17# exposing values to Python.
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
23# Start with a fresh gdb.
24
25gdb_exit
26gdb_start
27gdb_reinitialize_dir $srcdir/$subdir
28
29gdb_test_multiple "python print 23" "verify python support" {
30 -re "not supported.*$gdb_prompt $" {
31 unsupported "python support is disabled"
9e14a9ba
JB
32
33 # If Python is not supported, verify that sourcing a python script
34 # causes an error.
35 gdb_test "source $srcdir/$subdir/source2.py" "Error in sourced command file:.*"
d57a3c85
TJB
36 return -1
37 }
38 -re "$gdb_prompt $" {}
39}
40
41# Usage: gdb_py_test_multiple NAME INPUT RESULT {INPUT RESULT}...
42# Run a test named NAME, consisting of multiple lines of input.
43# After each input line INPUT, search for result line RESULT.
44# Succeed if all results are seen; fail otherwise.
45proc gdb_py_test_multiple {name args} {
46 global gdb_prompt
47 foreach {input result} $args {
48 if {[gdb_test_multiple $input "$name - $input" {
49 -re "\[\r\n\]*($result)\[\r\n\]+($gdb_prompt | *>)$" {
50 pass "$name - $input"
51 }
52 }]} {
53 return 1
54 }
55 }
56 return 0
57}
58
59gdb_py_test_multiple "multi-line python command" \
60 "python" "" \
61 "print 23" "" \
62 "end" "23"
63
64gdb_py_test_multiple "show python command" \
65 "define zzq" "Type commands for definition of .* just \"end\"\\.*" \
66 "python" "" \
67 "print 23" "" \
68 "end" "" \
69 "end" "" \
adb483fe 70 "show user zzq" "User command \"zzq\":.* python.*print 23.* end"
311a4e6b
TJB
71
72gdb_py_test_multiple "indented multi-line python command" \
73 "python" "" \
74 "def foo ():" "" \
75 " print 'hello, world!'" "" \
76 "foo ()" "" \
77 "end" "hello, world!"
89c73ade 78
9e14a9ba
JB
79gdb_test "source $srcdir/$subdir/source2.py" "yes"
80
89c73ade
TT
81gdb_test "python print gdb.current_objfile()" "None"
82gdb_test "python print gdb.objfiles()" "\\\[\\\]"
3bebe2f2
JK
83
84# Test http://bugs.python.org/issue4434 workaround in configure.ac
85gdb_test "python import itertools; print 'IMPOR'+'TED'" "IMPORTED" "pythonX.Y/lib-dynload/*.so"
bc9f0842
TT
86
87gdb_test_no_output \
88 "python x = gdb.execute('printf \"%d\", 23', to_string = True)"
89gdb_test "python print x" "23"
This page took 0.250486 seconds and 4 git commands to generate.