include/ChangeLog
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / section-flags.exp
CommitLineData
ae17ab41
CM
1# Test SECTION_FLAGS in a linker script.
2#
3# This file is part of the GNU Binutils.
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
18# MA 02110-1301, USA.
19
20set testname "SECTION_FLAGS-1"
21
22
23# This test only works for ELF targets
24if {! [is_elf_format]} {
25 unsupported $testname
26 return
27}
28
29if ![ld_assemble $as $srcdir/$subdir/section-flags-1.s tmpdir/section-flags-1.o] {
30 unresolved $testname
31 return
32}
33
34if ![ld_simple_link $ld tmpdir/section-flags-1 "-T $srcdir/$subdir/section-flags-1.t tmpdir/section-flags-1.o"] {
35 fail $testname
36 return
37}
38
39pass $testname
40
41set testname "SECTION_FLAGS-2"
42if ![ld_assemble $as $srcdir/$subdir/section-flags-2.s tmpdir/section-flags-2.o] {
43 unresolved $testname
44 return
45}
46
47if ![ld_simple_link $ld tmpdir/section-flags-2 "-T $srcdir/$subdir/section-flags-2.t tmpdir/section-flags-1.o tmpdir/section-flags-2.o"] {
48 fail $testname
49 return
50}
51
52pass $testname
This page took 0.024876 seconds and 4 git commands to generate.