This testcase currently does not handle powerpc branches. It kinda
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.linespec / macro-relative.exp
CommitLineData
ecd75fc8 1# Copyright 2013-2014 Free Software Foundation, Inc.
233d95b5
JK
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
16standard_testfile
17
01672a57
DE
18# Fission doesn't support macros yet. Bug 15954.
19if [using_fission] {
20 unsupported "fission"
21 return -1
22}
23
233d95b5
JK
24set opts {debug additional_flags=-I.}
25
26get_compiler_info
27if [test_compiler_info gcc*] {
28 lappend opts additional_flags=-g3
29}
30
31if { [file pathtype $objdir] == "relative" } {
32 untested "objdir $objdir should be absolute"
33 return
34}
35set saved_pwd [pwd]
36cd $srcdir/${subdir}/base/two
37set err [gdb_compile "../../${srcfile}" "${binfile}" executable $opts]
38cd $saved_pwd
39if { $err != "" } {
40 untested "compilation failed"
41 return -1
42}
43
44clean_restart ${testfile}
45
46# Test macros respect DW_AT_comp_dir.
47
48# "list header_two_func" does not set exactly the one line we want.
49if ![runto header_two_func] {
50 return -1
51}
52
53gdb_test "info macro HEADER" "\r\n#define HEADER 2"
This page took 0.656982 seconds and 4 git commands to generate.