diff options
author | Pedro Alves <palves@redhat.com> | 2010-03-12 19:17:01 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-03-12 19:17:01 +0000 |
commit | 759f0f0b7b0ca3e620e3dea8e69979739fb9536f (patch) | |
tree | 844ee111811bb3b7ce0dd7d9b3e4a5f3a4b06f8b /gdb/testsuite/gdb.base/unload.exp | |
parent | c942923237c7ae29a0d1766383cb747b2a34b7ad (diff) | |
download | gdb-759f0f0b7b0ca3e620e3dea8e69979739fb9536f.zip gdb-759f0f0b7b0ca3e620e3dea8e69979739fb9536f.tar.gz gdb-759f0f0b7b0ca3e620e3dea8e69979739fb9536f.tar.bz2 |
gdb/testsuite/
* lib/gdb.exp (skip_stl_tests): New.
(gdb_compile): Symbian needs -ldl.
(shlib_target_file): New.
(shlib_symbol_file): New.
(gdb_load_shlibs): Use shlib_target_file.
* lib/mi-support.exp (mi_load_shlibs): Use shlib_target_file.
* gdb.cp/exception.exp: Use skip_stl_tests.
* gdb.cp/bs15503.exp: Use skip_stl_tests. Use untested.
* gdb.cp/try_catch.exp: Use skip_stl_tests.
* gdb.cp/mb-templates.exp: Ditto.
* gdb.base/commands.exp: Relax regexes.
* gdb.base/watchpoint-solib.exp: Don't skip on symbian. Use
shlib_target_file and shlib_symbol_file.
* gdb.base/maint.exp: Allow lowercase t. Allow .rodata in
sections.
* gdb.base/ending-run.exp: Accept E32Main for symbian.
* gdb.base/solib-disc.exp: Use
shlib_target_file and shlib_symbol_file.
* gdb.base/unload.exp: Don't skip on symbian. Use
shlib_target_file and shlib_symbol_file.
* gdb.base/list.exp: Check use_gdb_stub instead of is_remote.
Diffstat (limited to 'gdb/testsuite/gdb.base/unload.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/unload.exp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gdb/testsuite/gdb.base/unload.exp b/gdb/testsuite/gdb.base/unload.exp index 9251ee7..20c0533 100644 --- a/gdb/testsuite/gdb.base/unload.exp +++ b/gdb/testsuite/gdb.base/unload.exp @@ -30,11 +30,6 @@ if {[skip_shlib_tests]} { return 0 } -# TODO: Use LoadLibrary on this target instead of dlopen. -if {[istarget arm*-*-symbianelf*]} { - return 0 -} - set testfile "unload" set libfile "unloadshr" set libfile2 "unloadshr2" @@ -49,13 +44,17 @@ set libsrc $srcdir/$subdir/$libfile.c set libsrc2 $srcdir/$subdir/$libfile2.c set lib_sl $objdir/$subdir/$libname set lib_sl2 $objdir/$subdir/$libname2 +set lib_dlopen [shlib_target_file ${libname}] +set lib_dlopen2 [shlib_target_file ${libname2}] +set lib_syms [shlib_symbol_file ${libname}] +set lib_syms2 [shlib_symbol_file ${libname2}] if [get_compiler_info ${binfile}] { return -1 } set lib_opts debug -set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${libname}\" additional_flags=-DSHLIB_NAME2\=\"${libname2}\"] +set exec_opts [list debug shlib_load additional_flags=-DSHLIB_NAME\=\"${lib_dlopen}\" additional_flags=-DSHLIB_NAME2\=\"${lib_dlopen2}\"] if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != "" || [gdb_compile_shlib $libsrc2 $lib_sl2 $lib_opts] != "" @@ -106,7 +105,7 @@ gdb_test "info break" \ gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-1" $testfile.c]" temporary gdb_test "continue" \ -"Continuing.*warning: Temporarily disabling breakpoints for.*${libname}.*y-set-1.*" \ +"Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms}.*y-set-1.*" \ "continuing to unloaded libfile" gdb_test "print y" " = 10" "print y from libfile" @@ -129,7 +128,7 @@ gdb_test "info break" \ gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-1" $testfile.c]" temporary gdb_test "continue" \ -"Continuing.*warning: Temporarily disabling breakpoints for.*${libname}.*y-set-1.*" \ +"Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms}.*y-set-1.*" \ "continuing to unloaded libfile" set unloadshr_line2 [gdb_get_line_number "unloadshr2 break" ${libsrcfile2}] @@ -148,7 +147,7 @@ gdb_test "info break" \ gdb_breakpoint "$testfile.c:[gdb_get_line_number "y-set-2" $testfile.c]" gdb_test "continue" \ -"Continuing.*warning: Temporarily disabling breakpoints for.*${libname2}.*y-set-2.*" \ +"Continuing.*warning: Temporarily disabling breakpoints for.*${lib_syms2}.*y-set-2.*" \ "continuing to unloaded libfile2" gdb_test "print y" " = 200" "print y from libfile2" |