]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.asm/asm-source.exp
Rewrite gdb.asm so that it doesn't assume a C comiler (or any C
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.asm / asm-source.exp
CommitLineData
c906108c
SS
1# Copyright (C) 1998 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 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16#
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19#
20# This file was written by Kendra.
21
22if $tracelevel then {
23 strace $tracelevel
24}
25
26#
27# Test debugging assembly level programs.
28# This file uses asmsrc[12].s for input.
29#
30
31set prms_id 0
32set bug_id 0
33
78492fde
AC
34set asm-arch ""
35set asm-flags ""
36
c906108c
SS
37if [istarget "d10v-*-*"] then {
38 set asm-arch d10v
78492fde
AC
39}
40if { "${asm-arch}" == "" } {
c906108c
SS
41 verbose "Skipping assembly source test -- not implemented for this target."
42 return
43}
44
45set testfile "asm-source"
46set binfile ${objdir}/${subdir}/${testfile}
47set src1 ${srcdir}/${subdir}/asmsrc1.s
48set src2 ${srcdir}/${subdir}/asmsrc2.s
49
78492fde
AC
50if { "${asm-flags}" == "" } {
51 #set asm-flags "-Wa,-gstabs,-I${srcdir}/${subdir},-I${objdir}/${subdir}"
52 set asm-flags "-gstabs -I${srcdir}/${subdir} -I${objdir}/${subdir}"
53}
c906108c 54
78492fde 55if {[target_assemble ${src1} asmsrc1.o "${asm-flags}"] != ""} then {
c906108c
SS
56 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
57}
78492fde 58if {[target_assemble ${src2} asmsrc2.o "${asm-flags}"] != ""} then {
c906108c
SS
59 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
60}
61
78492fde 62if { [target_link "asmsrc1.o asmsrc2.o" ${binfile} ""] != "" } {
c906108c
SS
63 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
64}
65
66remote_exec build "mv asmsrc1.o asmsrc2.o ${objdir}/${subdir}"
67
68
69gdb_start
70gdb_reinitialize_dir $srcdir/$subdir
71gdb_load ${binfile}
72
73#
74# Run to `main' where we begin our tests.
75#
76
77if ![runto_main] then {
78 gdb_suppress_tests
79}
80
81# Execute the `f' command and see if the result includes source info.
78492fde 82gdb_test "f" "asmsrc1\[.\]s:29.*several_nops" "f at main"
c906108c
SS
83
84# See if we properly `next' over a macro with several insns.
78492fde 85gdb_test "n" "33\[ \]*.*foo2" "next over macro"
c906108c
SS
86
87# See if we can properly `step' into a subroutine call.
88gdb_test "s" "8\[ \]*.*" "step into foo2"
89
90# See if `f' prints the right source file.
91gdb_test "f" ".*asmsrc2\[.\]s:8.*" "f in foo2"
92
93# `next' one insn (or macro) to set up our stackframe (for the following bt).
94gdb_test "n" "12\[ \]*.*foo3" "n in foo2"
95
78492fde
AC
96# See if a simple `bt' prints the right source files and doesn't fall off the stack.
97gdb_test "bt 10" "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33" "bt ALL in foo2"
98
99# See if a capped `bt' prints the right source files.
100gdb_test "bt 2" "\#0.*foo2.*asmsrc2\[.\]s:12.*\#1.*main.*asmsrc1\[.\]s:33.*" "bt 2 in foo2"
c906108c
SS
101
102# Step into another subroutine which lives back in the first source file.
103gdb_test "s" "" "s 2"
104
105# Next over insns to set up the stack frame.
106gdb_test "n" "" "n 2"
107
78492fde
AC
108# Now see if a capped `bt' is correct.
109gdb_test "bt 3" "\#0.*foo3.*asmsrc1\[.\]s:44.*\#1.*foo2.*asmsrc2\[.\]s:12.*\#2.*main.*asmsrc1\[.\]s:33.*" "bt 3 in foo3"