Imported Upstream version 7.8.1
[platform/upstream/gdb.git] / gdb / testsuite / gdb.python / py-prompt.exp
1 # Copyright (C) 2011-2014 Free Software Foundation, Inc.
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 # for defining the prompt in Python.
18
19 standard_testfile
20
21 # We need to use TCL's exec to get the pid.
22 if [is_remote target] then {
23     return 0
24 }
25
26 load_lib gdb-python.exp
27 load_lib prompt.exp
28
29 # Start with a fresh gdb.
30
31 gdb_exit
32 gdb_start
33 gdb_reinitialize_dir $srcdir/$subdir
34
35 # Skip all tests if Python scripting is not enabled.
36 if { [skip_python_tests] } { continue }
37 gdb_exit
38
39 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
40     return -1
41 }
42
43 global GDBFLAGS
44 set saved_gdbflags $GDBFLAGS
45 set GDBFLAGS [concat $GDBFLAGS " -ex \"set height 0\""]
46 set GDBFLAGS [concat $GDBFLAGS " -ex \"set width 0\""]
47 set GDBFLAGS [concat $GDBFLAGS " -ex \"python p = list()\""]
48 set prompt_func "python def foo(x): global p; p.append(x);  return \'(Foo) \'"
49 set GDBFLAGS [concat $GDBFLAGS " -ex \"$prompt_func\""]
50 set GDBFLAGS [concat $GDBFLAGS " -ex \"python gdb.prompt_hook=foo\""]
51
52 set tmp_gdbflags $GDBFLAGS
53 set gdb_prompt_fail $gdb_prompt
54
55 global gdb_prompt
56 # Does not include the space at the end of the prompt.
57 # gdb_test expects it not to be there.
58 set gdb_prompt "\[(\]Foo\[)\]"
59
60 set GDBFLAGS [concat $tmp_gdbflags " -ex \"set editing on\""]
61 prompt_gdb_start
62 gdb_test "python x = len(p); print (gdb.execute(\"show prompt\", to_string = True))" \
63          ".*prompt is \"$gdb_prompt \".*" \
64          "show prompt gets the correct result"
65 gdb_test "python print ('%d %d' % (x, len(p)))" "1 2" \
66          "retrieving the prompt causes no extra prompt_hook calls"
67 gdb_test "python print (\"'\" + str(p\[0\]) + \"'\")" "'$gdb_prompt_fail '" \
68          "prompt_hook argument is default prompt."
69 gdb_exit
70
71
72 set GDBFLAGS [concat $tmp_gdbflags " -ex \"set editing off\""]
73 prompt_gdb_start
74 gdb_test "python x = len(p); print (gdb.execute(\"show prompt\", to_string = True))" \
75          ".*prompt is \"$gdb_prompt \".*" \
76          "show prompt gets the correct result 2"
77 gdb_test "python print ('%d %d' % (x, len(p)))" "1 2" \
78          "retrieving the prompt causes no extra prompt_hook calls 2"
79 gdb_test "python print (\"'\" + str(p\[0\]) + \"'\")" "'$gdb_prompt_fail '" \
80          "prompt_hook argument is default prompt. 2"
81 gdb_exit
82
83 set testpid [spawn_wait_for_attach $binfile]
84
85 set GDBFLAGS [concat $tmp_gdbflags " -ex \"set pagination off\""]
86 set GDBFLAGS [concat $GDBFLAGS " -ex \"set editing on\""]
87 set GDBFLAGS [concat $GDBFLAGS " -ex \"attach $testpid\""]
88 set GDBFLAGS [concat $GDBFLAGS " -ex \"continue&\""]
89
90 # sync_execution = 1 is_running = 1
91 prompt_gdb_start
92 gdb_test "python x = len(p); print (gdb.execute(\"show prompt\", to_string = True))" \
93          ".*prompt is \"$gdb_prompt \".*" \
94          "show prompt gets the correct result 3"
95 gdb_test "python print ('%d %d' % (x, len(p)))" "1 2" \
96          "retrieving the prompt causes no extra prompt_hook calls 3"
97 gdb_test "python print (\"'\" + str(p\[0\]) + \"'\")" "'$gdb_prompt_fail '" \
98          "prompt_hook argument is default prompt. 3"
99 gdb_exit
100
101 set GDBFLAGS [concat $tmp_gdbflags " -ex \"set pagination off\""]
102 set GDBFLAGS [concat $GDBFLAGS " -ex \"set editing on\""]
103 set GDBFLAGS [concat $GDBFLAGS " -ex \"attach $testpid\""]
104 set GDBFLAGS [concat $GDBFLAGS " -ex \"interrupt\""]
105
106 # sync_execution = 1 is_running = 0
107 prompt_gdb_start
108 gdb_test "python x = len(p); print (gdb.execute(\"show prompt\", to_string = True))" \
109          ".*prompt is \"$gdb_prompt \".*" \
110          "show prompt gets the correct result 4"
111 gdb_test "python print ('%d %d' % (x, len(p)))" "1 2" \
112          "retrieving the prompt causes no extra prompt_hook calls 4"
113 gdb_test "python print (\"'\" + str(p\[0\]) + \"'\")" "'$gdb_prompt_fail '" \
114          "prompt_hook argument is default prompt. 4"
115 gdb_exit
116
117 set GDBFLAGS $saved_gdbflags
118 exec kill -9 ${testpid}
119 return 0