If the faketime library is missing, show a warning and skip the test. However, do not error out to make sure the test suite is able to terminate successfully on systems without libfaketime. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
15 lines
343 B
Bash
Executable File
15 lines
343 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -x "$(command -v faketime)" ]; then
|
|
echo "libfaketime not found - skipping $0..."
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" = 'actual' ]; then
|
|
faketime '2000-01-01 00:00:00' "$CALCURSE" --read-only -D "$DATA_DIR"/ -r400
|
|
elif [ "$1" = 'expected' ]; then
|
|
"$CALCURSE" --read-only -D "$DATA_DIR"/ -s01/01/2000 -r400
|
|
else
|
|
./run-test "$0"
|
|
fi
|