1#!/bin/sh
2
3# script_test_8.sh -- test for SEGMENT_START expressions with
4# -Ttext, -Tdata and -Tbss in a script.
5
6# Copyright (C) 2009-2016 Free Software Foundation, Inc.
7# Written by Doug Kwan <dougkwan@google.com>.
8
9# This file is part of gold.
10
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.
15
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.
20
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,
24# MA 02110-1301, USA.
25
26# This file goes with script_test_4.t, which is a linker script which
27# starts the program at an unaligned address.
28
29check()
30{
31    if ! grep -q "$2" "$1"
32    then
33	echo "Did not find expected section in $1:"
34	echo "   $2"
35	echo ""
36	echo "Actual output below:"
37	cat "$1"
38	exit 1
39    fi
40}
41
42check script_test_8.stdout "\\.interp[ 	]*PROGBITS[ 	]*0*20001000"
43check script_test_8.stdout "\\.data[ 	]*PROGBITS[ 	]*0*20200000"
44check script_test_8.stdout "\\.bss[ 	]*NOBITS[ 	]*0*2040...."
45