about summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2022-09-05 13:57:28 +0200
committervanhauser-thc <vh@thc.org>2022-09-05 13:57:32 +0200
commit0fe39e47680c8997ee9149bdc71acdf6b1af1b53 (patch)
treedce979e8b0fad0635d1c91686749a12bf92f2bd6 /test
parent0c122aeee65c5e91b6ecc465dcdf740aa67943d1 (diff)
downloadafl++-0fe39e47680c8997ee9149bdc71acdf6b1af1b53.tar.gz
egrep -> grep -e
Diffstat (limited to 'test')
-rwxr-xr-xtest/test-basic.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-basic.sh b/test/test-basic.sh
index bec42b4d..538b6931 100755
--- a/test/test-basic.sh
+++ b/test/test-basic.sh
@@ -48,7 +48,7 @@ test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" -o "$SYS" = "i86pc
       $ECHO "$GREEN[+] ${AFL_GCC} hardened mode succeeded and is working"
     } || {
       $ECHO "$RED[!] ${AFL_GCC} hardened mode is not hardened"
-      env | egrep 'AFL|PATH|LLVM'
+      env | grep -E 'AFL|PATH|LLVM'
       AFL_DEBUG=1 AFL_HARDEN=1 ../${AFL_GCC} -o test-compcov.harden test-compcov.c
       nm test-compcov.harden
       CODE=1