3 # gnu_property_test.sh -- test .note.gnu.property section.
5 # Copyright (C) 2018-2025 Free Software Foundation, Inc.
6 # Written by Cary Coutant <ccoutant@gmail.com>.
8 # This file is part of gold.
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
25 # This script checks that after linking the three object files
26 # gnu_property_[abc].S, each of which contains a .note.gnu.property
27 # section, the resulting output has only a single such note section,
28 # and that the properties have been correctly combined.
32 if ! grep -q "$2" "$1"
34 echo "Did not find expected output in $1:"
37 echo "Actual output below:"
45 if test "`grep -c "$2" "$1"`" != "$3"
47 echo "Did not find correct number of note sections in $1:"
50 echo "Actual output below:"
58 if $EGREP -q "Class:[ \t]+ELF64" "$1"
64 if ! $EGREP -q ".note.gnu.property[ \t]+NOTE.*$align$" "$1"
66 echo "Wrong .note.gnu.property alignment in $1:"
67 $EGREP ".note.gnu.property[ \t]+NOTE.*$align" "$1"
72 check_alignment gnu_property_test.stdout
74 check_count gnu_property_test.stdout
"GNU\s*0x[0-9a-f]*\s*NT_GNU_PROPERTY_TYPE_0" 1
76 check_count gnu_property_test.stdout
"^ NOTE" 2
78 check gnu_property_test.stdout
"stack size: 0x111100"
79 check gnu_property_test.stdout
"no copy on protected"
80 check gnu_property_test.stdout
"x86 ISA used: x86-64-baseline, <unknown: 10>, <unknown: 100>, <unknown: 1000>"
81 check gnu_property_test.stdout
"x86 ISA needed: x86-64-baseline, <unknown: 10>, <unknown: 100>, <unknown: 1000>"
82 check gnu_property_test.stdout
"x86 feature: IBT"