Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: gdb/testsuite/gdb.base/unload.exp

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.base/unload.c ('k') | gdb/testsuite/gdb.base/unloadshr.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2003-2005, 2007-2012 Free Software Foundation, Inc. 1 # Copyright 2003-2013 Free Software Foundation, Inc.
2 2
3 # This program is free software; you can redistribute it and/or modify 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 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 5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version. 6 # (at your option) any later version.
7 # 7 #
8 # This program is distributed in the hope that it will be useful, 8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details. 11 # GNU General Public License for more details.
(...skipping 12 matching lines...) Expand all
24 } 24 }
25 25
26 set testfile "unload" 26 set testfile "unload"
27 set libfile "unloadshr" 27 set libfile "unloadshr"
28 set libfile2 "unloadshr2" 28 set libfile2 "unloadshr2"
29 set libname "${libfile}.sl" 29 set libname "${libfile}.sl"
30 set libname2 "${libfile2}.sl" 30 set libname2 "${libfile2}.sl"
31 set libsrcfile ${libfile}.c 31 set libsrcfile ${libfile}.c
32 set libsrcfile2 ${libfile2}.c 32 set libsrcfile2 ${libfile2}.c
33 set srcfile $srcdir/$subdir/$testfile.c 33 set srcfile $srcdir/$subdir/$testfile.c
34 set binfile $objdir/$subdir/$testfile 34 set binfile [standard_output_file $testfile]
35 set shlibdir ${objdir}/${subdir} 35 set shlibdir [standard_output_file {}]
36 set libsrc $srcdir/$subdir/$libfile.c 36 set libsrc $srcdir/$subdir/$libfile.c
37 set libsrc2 $srcdir/$subdir/$libfile2.c 37 set libsrc2 $srcdir/$subdir/$libfile2.c
38 set lib_sl $objdir/$subdir/$libname 38 set lib_sl [standard_output_file $libname]
39 set lib_sl2 $objdir/$subdir/$libname2 39 set lib_sl2 [standard_output_file $libname2]
40 set lib_dlopen [shlib_target_file ${libname}] 40 set lib_dlopen [shlib_target_file ${libname}]
41 set lib_dlopen2 [shlib_target_file ${libname2}] 41 set lib_dlopen2 [shlib_target_file ${libname2}]
42 set lib_syms [shlib_symbol_file ${libname}] 42 set lib_syms [shlib_symbol_file ${libname}]
43 set lib_syms2 [shlib_symbol_file ${libname2}] 43 set lib_syms2 [shlib_symbol_file ${libname2}]
44 44
45 if [get_compiler_info] { 45 if [get_compiler_info] {
46 return -1 46 return -1
47 } 47 }
48 48
49 set lib_opts debug 49 set lib_opts debug
50 set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${lib_dlop en}\" additional_flags=-DSHLIB_NAME2\=\"${lib_dlopen2}\"] 50 set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME=\"${lib_dlope n}\" additional_flags=-DSHLIB_NAME2=\"${lib_dlopen2}\"]
51 51
52 if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != "" 52 if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
53 || [gdb_compile_shlib $libsrc2 $lib_sl2 $lib_opts] != "" 53 || [gdb_compile_shlib $libsrc2 $lib_sl2 $lib_opts] != ""
54 || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} { 54 || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} {
55 untested "Couldn't compile $libsrc or $libsrc2 or $srcfile." 55 untested "Couldn't compile $libsrc or $libsrc2 or $srcfile."
56 return -1 56 return -1
57 } 57 }
58 58
59 # Start with a fresh gdb. 59 # Start with a fresh gdb.
60 60
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 2\[\t \]+breakpoint keep y *0x\[0-9a-f\]+ *in shrfunc2 at .*" \ 133 2\[\t \]+breakpoint keep y *0x\[0-9a-f\]+ *in shrfunc2 at .*" \
134 "pending breakpoint info on second run at shrfunc2" 134 "pending breakpoint info on second run at shrfunc2"
135 135
136 gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-2" $testfile.c]" 136 gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-2" $testfile.c]"
137 137
138 gdb_test "continue" \ 138 gdb_test "continue" \
139 "Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms2}.*y-set -2.*" \ 139 "Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms2}.*y-set -2.*" \
140 "continuing to unloaded libfile2" 140 "continuing to unloaded libfile2"
141 141
142 gdb_test "print y" " = 200" "print y from libfile2" 142 gdb_test "print y" " = 200" "print y from libfile2"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/unload.c ('k') | gdb/testsuite/gdb.base/unloadshr.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698