1 # Copyright 2007-2012 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 # Test essential Machine interface (MI) operations
18 # Verify that once binary file has changed, GDB correctly handles
19 # previously defined MI variables.
23 load_lib mi-support.exp
31 set testfile "var-cmd"
32 set srcfile ${testfile}.c
33 set binfile ${objdir}/${subdir}/mi-var-invalidate
34 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
35 untested mi-var-invalidate.exp
38 # Just change the output binary.
39 set binfile_bis ${objdir}/${subdir}/mi-var-invalidate_bis
40 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile_bis}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
41 untested mi-var-invalidate.exp
45 set testfile2 "basics"
46 set srcfile2 ${testfile2}.c
47 set binfile2 ${objdir}/${subdir}/${testfile2}
48 if { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
49 untested mi-var-invalidate.exp
54 mi_gdb_reinitialize_dir $srcdir/$subdir
55 mi_gdb_load ${binfile}
57 # Desc: Create global variable.
58 mi_create_varobj global_simple global_simple "create global variable"
60 mi_runto do_locals_tests
62 # Desc: create local variables
63 mi_create_varobj linteger linteger "create local variable linteger"
66 # Reload the same binary.
67 # Global variable should remain, local should be invalidated.
70 mi_gdb_load ${binfile_bis}
73 # Check local variable is "invalid".
74 mi_gdb_test "-var-update linteger" \
75 "\\^done,changelist=\\\[\{name=\"linteger\",in_scope=\"invalid\",has_more=\"0\"\}\\\]" \
76 "linteger not anymore in scope due to binary changes"
78 mi_gdb_test "-var-info-type linteger" \
80 "no type for invalid variable linteger (1)"
82 # Check global variable is still correct.
83 mi_gdb_test "-var-update global_simple" \
84 "\\^done,changelist=\\\[\]" \
85 "global_simple still alive"
87 mi_gdb_test "-var-info-type global_simple" \
88 "\\^done,type=\"simpleton\"" \
89 "type simpleton for valid variable global_simple"
93 # Load an other binary.
94 # All variables must be invalidated.
97 mi_gdb_load ${binfile2}
98 # Check local variable are "invalid"
99 mi_gdb_test "-var-update linteger" \
100 "\\^done,changelist=\\\[\{name=\"linteger\",in_scope=\"invalid\",has_more=\"0\"\}\\\]" \
101 "linteger not valid anymore due to binary changes"
103 mi_gdb_test "-var-info-type linteger" \
104 "\\^done,type=\"\"" \
105 "no type for invalid variable linteger (2)"
107 # Check global variable are still correct.
108 mi_gdb_test "-var-update global_simple" \
109 "\\^done,changelist=\\\[\{name=\"global_simple\",in_scope=\"invalid\",has_more=\"0\"\}\\\]" \
110 "global_simple not anymore in scope due to binary changes"
112 mi_gdb_test "-var-info-type global_simple" \
113 "\\^done,type=\"\"" \
114 "no type for invalid variable global_simple"