3 # arm_target2_abs.sh -- test --target2=abs option.
4 # This test is based on ld/testsuite/ld-arm/arm-target2-abs.d.
6 # Copyright (C) 2016-2019 Free Software Foundation, Inc.
7 # Written by Igor Kudrin <ikudrin@accesssoftek.com>.
9 # This file is part of gold.
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
31 found
=`fgrep "Contents of section $section:" -A1 $file | tail -n 1`
32 if test -z "$found"; then
33 echo "Section \"$section\" not found in file $file"
35 echo "Actual output below:"
39 match_pattern
=`echo "$found" | grep -e "$pattern"`
40 if test -z "$match_pattern"; then
41 echo "Expected pattern was not found in section \"$section\":"
44 echo "Actual output below:"
51 # foo + 0x1234 = 0x9244
52 # foo + 0xcdef0000 = 0xcdef8010
53 # foo + 0x76543210 = 0x7654b220
54 check
"arm_target2_abs.stdout" ".text" "\<8000[[:space:]]\+\(10800000\|00008010\)[[:space:]]\+\(44920000\|00009244\)[[:space:]]\+\(1080efcd\|cdef8010\)[[:space:]]\+\(20b25476\|7654b220\)\b"