mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
67d1991b78
Apparently some distros have a nagging egrep that helpfully tells you egrep is deprecated and to use "grep -E". The nag message causes a ld testsuite failure. What's more the advice isn't that good. The "-E" flag may not be available with older versions of grep. This patch fixes bare invocation of egrep within binutils, replacing it with the autoconf $EGREP or with grep. config/ * lib-ld.m4 (AC_LIB_PROG_LD_GNU): Require AC_PROG_EGREP and invoke $EGREP. (AC_LIB_PROG_LD): Likewise. binutils/ * configure: Regenerate. * embedspu.sh: Replace egrep with grep. gold/ * testsuite/Makefile.am (flagstest_compress_debug_sections.check): Replace egrep with grep. * testsuite/Makefile.in: Regenerate. * testsuite/bnd_ifunc_1.sh: Replace egrep with $EGREP. * testsuite/bnd_ifunc_2.sh: Likewise. * testsuite/bnd_plt_1.sh: Likewise. * testsuite/discard_locals_test.sh: Likewise. * testsuite/gnu_property_test.sh: Likewise. * testsuite/no_version_test.sh: Likewise. * testsuite/pr18689.sh: Likewise. * testsuite/pr26936.sh: Likewise. * testsuite/retain.sh: Likewise. * testsuite/split_i386.sh: Likewise. * testsuite/split_s390.sh: Likewise. * testsuite/split_x32.sh: Likewise. * testsuite/split_x86_64.sh: Likewise. * testsuite/ver_test_pr16504.sh: Likewise. intl/ * configure: Regenerate. ld/ * testsuite/ld-elfvers/vers.exp (test_ar): Replace egrep with grep.
56 lines
1.6 KiB
Bash
Executable File
56 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# split_x32.sh -- test -fstack-split for x32
|
|
|
|
# Copyright (C) 2014-2022 Free Software Foundation, Inc.
|
|
# Written by Ian Lance Taylor <iant@google.com>.
|
|
# Modified by H.J. Lu <hongjiu.lu@intel.com>.
|
|
|
|
# This file is part of gold.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
|
|
match()
|
|
{
|
|
if ! $EGREP "$1" "$2" >/dev/null 2>&1; then
|
|
echo 1>&2 "could not find '$1' in $2"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
nomatch()
|
|
{
|
|
if $EGREP "$1" "$2" >/dev/null 2>&1; then
|
|
echo 1>&2 "found unexpected '$1' in $2"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
match 'cmp.*+%fs:[^,]*,%esp' split_x32_1.stdout
|
|
match 'call.*__morestack>?$' split_x32_1.stdout
|
|
match 'lea.*-0x200\(%rsp\),' split_x32_1.stdout
|
|
|
|
match 'stc' split_x32_2.stdout
|
|
match 'call.*__morestack_non_split>?$' split_x32_2.stdout
|
|
nomatch 'call.*__morestack>?$' split_x32_2.stdout
|
|
match 'lea.*-0x100200\(%rsp\),' split_x32_2.stdout
|
|
|
|
match 'failed to match' split_x32_3.stdout
|
|
|
|
match 'call.*__morestack>?$' split_x32_4.stdout
|
|
|
|
match 'cannot mix' split_x32_r.stdout
|