]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-var-invalidate.exp
Switch the license of all .exp files to GPLv3.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-var-invalidate.exp
CommitLineData
fada3feb
DP
1# Copyright 2007 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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
fada3feb
DP
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
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
fada3feb
DP
15#
16# Test essential Machine interface (MI) operations
17#
18# Verify that once binary file has changed, GDB correctly handles
19# previously defined MI variables.
20#
21
22
23load_lib mi-support.exp
24set MIFLAGS "-i=mi"
25
26gdb_exit
27if [mi_gdb_start] {
28 continue
29}
30
31set testfile "var-cmd"
32set srcfile ${testfile}.c
33set binfile ${objdir}/${subdir}/${testfile}
34if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
35 untested mi-var-invalidate.exp
36 return -1
37}
38# Just change the output binary.
39set binfile_bis ${objdir}/${subdir}/${testfile}_bis
40if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile_bis}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
41 untested mi-var-invalidate.exp
42 return -1
43}
44
45set testfile2 "basics"
46set srcfile2 ${testfile2}.c
47set binfile2 ${objdir}/${subdir}/${testfile2}
48if { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
49 untested mi-var-invalidate.exp
50 return -1
51}
52
53mi_delete_breakpoints
54mi_gdb_reinitialize_dir $srcdir/$subdir
55mi_gdb_load ${binfile}
56
57# Desc: Create global variable.
58mi_gdb_test "-var-create global_simple * global_simple" \
59 "\\^done,name=\"global_simple\",numchild=\"6\",value=\".*\",type=\"simpleton\"" \
60 "create global variable"
61
62mi_runto do_locals_tests
63
64# Desc: create local variables
65mi_gdb_test "-var-create linteger * linteger" \
66 "\\^done,name=\"linteger\",numchild=\"0\",value=\".*\",type=\"int\"" \
67 "create local variable linteger"
68
69#
70# Reload the same binary.
71# Global variable should remain, local should be invalidated.
72#
73mi_delete_breakpoints
74mi_gdb_load ${binfile_bis}
75mi_runto main
76
77# Check local variable is "invalid".
78mi_gdb_test "-var-update linteger" \
79 "\\^done,changelist=\\\[\{name=\"linteger\",in_scope=\"invalid\"\}\\\]" \
80 "linteger not anymore in scope due to binary changes"
81
82mi_gdb_test "-var-info-type linteger" \
83 "\\^done,type=\"\"" \
84 "no type for invalid variable linteger (1)"
85
86# Check global variable is still correct.
87mi_gdb_test "-var-update global_simple" \
88 "\\^done,changelist=\\\[\]" \
89 "global_simple still alive"
90
91mi_gdb_test "-var-info-type global_simple" \
92 "\\^done,type=\"simpleton\"" \
93 "type simpleton for valid variable global_simple"
94
95
96#
97# Load an other binary.
98# All variables must be invalidated.
99#
100mi_delete_breakpoints
101mi_gdb_load ${binfile2}
102# Check local variable are "invalid"
103mi_gdb_test "-var-update linteger" \
104 "\\^done,changelist=\\\[\{name=\"linteger\",in_scope=\"invalid\"\}\\\]" \
105 "linteger not valid anymore due to binary changes"
106
107mi_gdb_test "-var-info-type linteger" \
108 "\\^done,type=\"\"" \
109 "no type for invalid variable linteger (2)"
110
111# Check global variable are still correct.
112mi_gdb_test "-var-update global_simple" \
113 "\\^done,changelist=\\\[\{name=\"global_simple\",in_scope=\"invalid\"\}\\\]" \
114 "global_simple not anymore in scope due to binary changes"
115
116mi_gdb_test "-var-info-type global_simple" \
117 "\\^done,type=\"\"" \
118 "no type for invalid variable global_simple"
119
120mi_gdb_exit
121return 0