From: Viktor Szépe Date: Sun, 26 Nov 2023 15:52:55 +0000 (+0100) Subject: test: Fix regex in direct.bash (#1357) X-Git-Tag: v4.9~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88b441e0b007d7bdc3b53185c9d9fae30abfc455;p=thirdparty%2Fccache.git test: Fix regex in direct.bash (#1357) --- diff --git a/test/suites/direct.bash b/test/suites/direct.bash index c21969be7..aebc37146 100644 --- a/test/suites/direct.bash +++ b/test/suites/direct.bash @@ -1227,7 +1227,7 @@ EOF manifest=`find $CCACHE_DIR -name '*M'` if [ -n "$manifest" ]; then - data="`$CCACHE --inspect $manifest | grep -E '/dev/(stdout|tty|sda|hda'`" + data="`$CCACHE --inspect $manifest | grep -E '/dev/(stdout|tty|sda|hda)'`" if [ -n "$data" ]; then test_failed "$manifest contained troublesome file(s): $data" fi