Fix remind call in test

This commit is contained in:
Jochen Sprickerhof
2024-11-18 16:26:01 +01:00
committed by Jochen Sprickerhof
parent 9dca1840a1
commit ed6d35e418

View File

@@ -614,7 +614,7 @@ fi
../src/remind --print-tokens < /dev/null >> ../tests/test.out 2>&1
# Make sure all the include files are ok
find ../include -type f -name '*.rem' | while read x; do remind -n $x 1 Jan 2024 2>>../tests/test.out 1>/dev/null; done
find ../include -type f -name '*.rem' | while read x; do ../src/remind -n $x 1 Jan 2024 2>>../tests/test.out 1>/dev/null; done
cmp -s ../tests/test.out ../tests/test.cmp
if [ "$?" = "0" ]; then
echo "Remind: Acceptance test PASSED"