]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
test: Fix regex in direct.bash (#1357)
authorViktor Szépe <viktor@szepe.net>
Sun, 26 Nov 2023 15:52:55 +0000 (16:52 +0100)
committerGitHub <noreply@github.com>
Sun, 26 Nov 2023 15:52:55 +0000 (16:52 +0100)
test/suites/direct.bash

index c21969be7a0bfe77f80e27293faf9b8041d3f9b2..aebc371468a3b980ec97bf21ef4d472e53dbe8e3 100644 (file)
@@ -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