diff -r 767fe7a007f7 -r ae763178ee1e test/total.sh --- a/test/total.sh Fri Jun 03 20:06:08 2022 +0200 +++ b/test/total.sh Fri Sep 22 23:26:23 2023 +0200 @@ -29,16 +29,13 @@ echo -n "Verifying correctness of total line count: " -clineprg="$(pwd)/../src/cline" - -cd $srcdir -count=`$clineprg -Vs testfile.c` +count=`../build/cline -Vs testfile.c` expected=21 if [ "$count" -eq "$expected" ]; then echo "OK." - exit 0; + exit 0 else echo "FAIL! $count is not $expected" - exit 1; + exit 1 fi