Add print 'file'::var testcase with two libs defining the same global variable
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / print-file-var.exp
1 # Copyright 2012 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 set executable print-file-var-main
17
18 set lib1 "print-file-var-lib1"
19 set lib2 "print-file-var-lib2"
20
21 set libobj1 "${objdir}/${subdir}/${lib1}.so"
22 set libobj2 "${objdir}/${subdir}/${lib2}.so"
23
24 set lib_opts { debug additional_flags=-fPIC }
25
26 if { [gdb_compile_shlib ${srcdir}/${subdir}/${lib1}.c \
27 ${libobj1} \
28 ${lib_opts} ] != "" } {
29 return -1
30 }
31 if { [gdb_compile_shlib ${srcdir}/${subdir}/${lib2}.c \
32 ${libobj2} \
33 ${lib_opts} ] != "" } {
34 return -1
35 }
36 if { [gdb_compile "${srcdir}/${subdir}/${executable}.c" \
37 "${objdir}/${subdir}/${executable}" \
38 executable \
39 [list debug shlib=${libobj1} shlib=${libobj2}]]
40 != ""} {
41 return -1
42 }
43
44 clean_restart $executable
45
46 if ![runto_main] {
47 untested "could not run to main"
48 return -1
49 }
50
51 gdb_test "print 'print-file-var-lib1.c'::this_version_id" \
52 " = 104"
53
54 gdb_test "print 'print-file-var-lib2.c'::this_version_id" \
55 " = 203"
This page took 0.032686 seconds and 4 git commands to generate.