[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / unload.exp
blobdf5be3f827ce17e8e4767e279167357413027c13
1 #   Copyright 2003-2019 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 # This file was created by Jeff Johnston. (jjohnstn@redhat.com)
19 # test running programs
22 if {[skip_shlib_tests]} {
23     return 0
26 set testfile "unload"
27 set libfile "unloadshr"
28 set libfile2 "unloadshr2"
29 set libname "${libfile}.sl"
30 set libname2 "${libfile2}.sl"
31 set libsrcfile ${libfile}.c
32 set libsrcfile2 ${libfile2}.c
33 set srcfile $srcdir/$subdir/$testfile.c
34 set binfile [standard_output_file $testfile]
35 set shlibdir [standard_output_file {}]
36 set libsrc  $srcdir/$subdir/$libfile.c
37 set libsrc2  $srcdir/$subdir/$libfile2.c
38 set lib_sl  [standard_output_file $libname]
39 set lib_sl2  [standard_output_file $libname2]
40 set lib_dlopen [shlib_target_file ${libname}]
41 set lib_dlopen2 [shlib_target_file ${libname2}]
42 set lib_syms [shlib_symbol_file ${libname}]
43 set lib_syms2 [shlib_symbol_file ${libname2}]
45 if [get_compiler_info] {
46     return -1
49 set lib_opts debug
50 set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME=\"${lib_dlopen}\" additional_flags=-DSHLIB_NAME2=\"${lib_dlopen2}\"]
52 if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
53      || [gdb_compile_shlib $libsrc2 $lib_sl2 $lib_opts] != ""
54      || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} {
55     untested "failed to compile"
56     return -1
59 # Start with a fresh gdb.
61 gdb_exit
62 gdb_start
63 gdb_reinitialize_dir $srcdir/$subdir
64 gdb_load ${binfile}
65 gdb_load_shlib $lib_sl
66 gdb_load_shlib $lib_sl2
69 # Test setting a breakpoint in a dynamically loaded library which is
70 # manually loaded and unloaded
73 gdb_breakpoint "shrfunc1" allow-pending
74 gdb_breakpoint "shrfunc2" allow-pending
76 gdb_test "info break" \
77     "Num     Type\[ \]+Disp Enb Address\[ \]+What\r?
78 1\[\t \]+breakpoint     keep y *<PENDING> *shrfunc1\r?
79 2\[\t \]+breakpoint     keep y *<PENDING> *shrfunc2" \
80 "pending breakpoint info before run"
82 set unloadshr_line [gdb_get_line_number "unloadshr break" ${libsrcfile}]
84 gdb_run_cmd
85 gdb_test "" \
86 "Breakpoint 1, shrfunc1 \\\(x=1\\\).*${libsrcfile}:$unloadshr_line.*" \
87 "running program"
89 gdb_test "info break" \
90     "Num     Type\[ \]+Disp Enb Address\[ \]+What\r?
91 1\[\t \]+breakpoint     keep y *0x\[0-9a-f\]+ *in shrfunc1 at .*
92 2\[\t \]+breakpoint     keep y *<PENDING> *shrfunc2.*" \
93 "pending breakpoint info on first run at shrfunc1"
95 gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-1" $testfile.c]" temporary
97 gdb_test "continue" \
98 "Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms}.*y-set-1.*" \
99 "continuing to unloaded libfile"
101 gdb_test "print y" " = 10" "print y from libfile"
104 # Try to rerun program and verify that shared breakpoint is reset properly
107 gdb_run_cmd
108 gdb_test "" \
109 "Breakpoint 1, shrfunc1 \\\(x=1\\\).*${libsrcfile}:$unloadshr_line.*" \
110 "rerun to shared library breakpoint"
112 gdb_test "info break" \
113     "Num     Type\[ \]+Disp Enb Address\[ \]+What\r?
114 1\[\t \]+breakpoint     keep y *0x\[0-9a-f\]+ *in shrfunc1 at .*
115 2\[\t \]+breakpoint     keep y *<PENDING> *shrfunc2.*" \
116 "pending breakpoint info on second run at shrfunc1"
118 gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-1" $testfile.c]" temporary
120 gdb_test "continue" \
121 "Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms}.*y-set-1.*" \
122 "continuing to unloaded libfile"
124 set unloadshr_line2 [gdb_get_line_number "unloadshr2 break" ${libsrcfile2}]
126 gdb_test "continue" \
127 "Breakpoint 2, shrfunc2 \\\(x=2\\\).*${libsrcfile2}:$unloadshr_line2\r\n.*" \
128 "continue to shrfunc2"
130 gdb_test "info break" \
131     "Num     Type\[ \]+Disp Enb Address\[ \]+What\r?
132 1\[\t \]+breakpoint     keep y *<PENDING> *shrfunc1\r?
133 \[\t \]+breakpoint already hit \[0-9\]+ (time|times)\r?
134 2\[\t \]+breakpoint     keep y *0x\[0-9a-f\]+ *in shrfunc2 at .*" \
135 "pending breakpoint info on second run at shrfunc2"
137 gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-2" $testfile.c]"
139 gdb_test "continue" \
140 "Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms2}.*y-set-2.*" \
141 "continuing to unloaded libfile2"
143 gdb_test "print y" " = 200" "print y from libfile2"