* gdb.base/solib-corrupted.exp: Respect skip_shlib_tests.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / solib-corrupted.exp
1 # Copyright 2010 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 if {[skip_shlib_tests]} {
17 return 0
18 }
19
20 set testfile "solib-corrupted"
21 set srcfile start.c
22
23 if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
24 untested ${testfile}.exp
25 return -1
26 }
27
28 if ![runto_main] {
29 fail "Can't run to main"
30 return
31 }
32
33 gdb_test "info sharedlibrary" "From * To .*" "normal list"
34
35 # GDB checks there for matching L_PREV.
36 set test "make solibs looping"
37 gdb_test_multiple "p/x _r_debug->r_map->l_next = _r_debug->r_map" $test {
38 -re "(No symbol \"_r_debug\" in current context\\.|Attempt to extract a component of a value that is not a structure pointer\\.)\r\n$gdb_prompt $" {
39 # glibc debug info is not available and it is too difficult to find and
40 # parse it from this testcase without the gdb supporting functions.
41 verbose -log "no _r_debug symbol has been found"
42 xfail $test
43 untested ${testfile}.exp
44 return
45 }
46 -re " = 0x\[0-9a-f\]+\r\n$gdb_prompt $" {
47 pass $test
48 }
49 }
50 gdb_test "info sharedlibrary" "warning: Corrupted shared library list\r\n.*" "corrupted list"
This page took 0.031183 seconds and 4 git commands to generate.