aboutsummaryrefslogtreecommitdiffstats
path: root/abi-perf-test
diff options
context:
space:
mode:
authorAndreas Stieger <Andreas.Stieger@gmx.de>2022-09-08 22:26:47 +0200
committerJay Berkenbilt <jberkenbilt@users.noreply.github.com>2022-09-09 12:57:38 +0200
commit7049588bff21e3ea3e7bf3c4a4325c8ab4ed46f8 (patch)
treeb7589158a6619cb17df30a770e8e44ca8df00c9c /abi-perf-test
parent4dcc1021b8c686369dce8a00983a47017504f764 (diff)
downloadqpdf-7049588bff21e3ea3e7bf3c4a4325c8ab4ed46f8.tar.zst
Fix tests with GNU grep 3.8
GNU grep 3.8 started to emit warnings when invoking egrep. Convert all calls to grep -E.
Diffstat (limited to 'abi-perf-test')
-rwxr-xr-xabi-perf-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/abi-perf-test b/abi-perf-test
index 8393e283..b007ba53 100755
--- a/abi-perf-test
+++ b/abi-perf-test
@@ -3,7 +3,7 @@ set -eo pipefail
cd $(dirname $0)
whoami=$(basename $0)
-if [[ $(git status -s | egrep -v abi-perf-test | wc -l) != 0 ]]; then
+if [[ $(git status -s | grep -E -v abi-perf-test | wc -l) != 0 ]]; then
echo 1>&2 "${whoami}: git is not clean. (abi-perf-test changes ignored)"
git status -s
exit 2