From 88b441e0b007d7bdc3b53185c9d9fae30abfc455 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Viktor=20Sz=C3=A9pe?= Date: Sun, 26 Nov 2023 16:52:55 +0100 Subject: [PATCH] test: Fix regex in direct.bash (#1357) --- test/suites/direct.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2