From: Sam James Date: Mon, 22 May 2023 17:58:20 +0000 (+0100) Subject: test: Fix typo (missing line continuation) (#1287) X-Git-Tag: v4.8.2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6372b867387648ce79b58c54ce345c2442c9493d;p=thirdparty%2Fccache.git test: Fix typo (missing line continuation) (#1287) Fixes typo in ef634bdb292e1e24b8d1b5490e7857144a77c0fd. --- diff --git a/test/suites/base.bash b/test/suites/base.bash index 38d269708..17056a4cc 100644 --- a/test/suites/base.bash +++ b/test/suites/base.bash @@ -552,7 +552,7 @@ fi # ------------------------------------------------------------------------- TEST "Directory is not hashed if using -gz" - if $COMPILER -c test1.c -gz 2>/dev/null + if $COMPILER -c test1.c -gz 2>/dev/null \ && $COMPILER -E test1.c -gz >preprocessed.i 2>/dev/null \ && [ -s preprocessed.i ] \ && ! grep -Fq $PWD preprocessed.i; then