aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/nodebug.exp
blob: dd8456208cc12f6764b4404250d84320cf084c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Test that things still (sort of) work when compiled without -g.

if $tracelevel then {
	strace $tracelevel
}

set prms_id 0
set bug_id 0

set binfile $objdir/$subdir/nodebug

if ![file exists $binfile] then {
    perror "$binfile does not exist."
    return 0
} else {
    gdb_reinitialize_dir $srcdir/$subdir
    gdb_load $binfile

    if [runto inner] then {

	# Expect to find global/local symbols in each of text/data/bss.

	# The exact format for some of this output is not necessarily
	# ideal, particularly interpreting "p top" requires a fair bit of
	# savvy about gdb's workings and the meaning of the "{}"
	# construct.  So the details maybe could be tweaked.  But the
	# basic purpose should be maintained, which is (a) users should be
	# able to interact with these variables with some care (they have
	# to know how to interpret them according to their real type,
	# since gdb doesn't know the type), but (b) users should be able
	# to detect that gdb does not know the type, rather than just
	# being told they are ints or functions returning int like old
	# versions of gdb used to do.

	# On alpha (and other ecoff systems, even stabs in ecoff) GCC
	# puts out stProc and related symbols which cause GDB to think
	# it knows the type.  GDB probably could be fixed to do
	# better, but for now xfail these tests.  Irix5, even though
	# it is ELF, counts as "ecoff" because gcc puts out a .mdebug
	# section even without -g.  Personally, I think that is pretty
	# dubious, but maybe dbx requires it.
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "p top" \
	    "{<(text variable|function), no debug info>} \[0-9a-fx]* <top>"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "whatis top" "<(text variable|function), no debug info>"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "ptype top" "int \\(\\)"

	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "p middle" \
	    "{<(text variable|function), no debug info>} \[0-9a-fx]* <middle>"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "whatis middle" "<(text variable|function), no debug info>"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "ptype middle" "int \\(\\)"

	gdb_test "p dataglobal" "= 3"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "whatis dataglobal" \
	    "<(data variable|variable), no debug info>"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "ptype dataglobal" "<(data variable|variable), no debug info>"

	# The only symbol xcoff puts out for statics is for the TOC entry.
	# Possible, but hairy, for gdb to deal.  Right now it doesn't, it
	# doesn't know the variables exist at all.
	setup_xfail "rs6000*-*-aix*"
	gdb_test "p datalocal" "= 4"
	setup_xfail "rs6000*-*-aix*"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "whatis datalocal" "<(data variable|variable), no debug info>"
	setup_xfail "rs6000*-*-aix*"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "ptype datalocal" "<(data variable|variable), no debug info>"

	gdb_test "p bssglobal" "= 0"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "whatis bssglobal" "<(data variable|variable), no debug info>"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "ptype bssglobal" "<(data variable|variable), no debug info>"

	setup_xfail "rs6000*-*-aix*"
	gdb_test "p bsslocal" "= 0"
	setup_xfail "rs6000*-*-aix*"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "whatis bsslocal" "<(data variable|variable), no debug info>"
	setup_xfail "rs6000*-*-aix*"
	setup_xfail "alpha*-*-osf*" "mips*-*-irix*" "*-*-ultrix*"
	gdb_test "ptype bsslocal" "<(data variable|variable), no debug info>"

	gdb_test "backtrace" "#0.*inner.*#1.*middle.*#2.*top.*#3.*main"
	# Or if that doesn't work, at least hope for the external symbols
	gdb_test "backtrace" "#0.*inner.*#1.*#2.*top.*#3.*main"

	# This test is not as obscure as it might look.  `p getenv ("TERM")'
	# is a real-world example, at least on many systems.
	test_print_accept {p/c array_index("abcdef",2)} "99 'c'"

	# Now, try that we can give names of file-local symbols which happen
	# to be unique, and have it still work
	if [runto middle] then {
	    gdb_test "backtrace" "#0.*middle.*#1.*top.*#2.*main"
	}
    }
}