From 22db7b5132e6dd9653f85689b019faadd8a107e7 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Fri, 2 Feb 2018 10:16:27 +0100 Subject: [PATCH] tests: use TS_HELPER_CAL Signed-off-by: Karel Zak --- tests/commands.sh | 1 + tests/ts/cal/month | 7 +++++-- tests/ts/cal/sep1752 | 7 +++++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/tests/commands.sh b/tests/commands.sh index 985064446d..1be2d25b43 100644 --- a/tests/commands.sh +++ b/tests/commands.sh @@ -39,6 +39,7 @@ TS_HELPER_TIOCSTI="$top_builddir/test_tiocsti" TS_HELPER_UUID_PARSER="$top_builddir/test_uuid_parser" TS_HELPER_UUID_NAMESPACE="$top_builddir/test_uuid_namespace" TS_HELPER_MBSENCODE="$top_builddir/test_mbsencode" +TS_HELPER_CAL="$top_builddir/test_cal" # paths to commands TS_CMD_ADDPART=${TS_CMD_ADDPART:-"$top_builddir/addpart"} diff --git a/tests/ts/cal/month b/tests/ts/cal/month index ba4e07af03..9794e90c08 100755 --- a/tests/ts/cal/month +++ b/tests/ts/cal/month @@ -29,6 +29,9 @@ export TERM=linux USETERM=$( ts_has_option "useterm" "$*" ) MYTIME="27 09 2006" +CAL_TEST_TIME=1516562739 # 21st January 2018 +export CAL_TEST_TIME + function call_cal { local testname=$(echo "$2" | sed 's/-//g') @@ -36,9 +39,9 @@ function call_cal { ts_log "$1" shift if [ "$USETERM" == "yes" ]; then - $TS_CMD_CAL "$@" + $TS_HELPER_CAL "$@" fi - $TS_CMD_CAL "$@" >> $TS_OUTPUT + $TS_HELPER_CAL "$@" >> $TS_OUTPUT ts_finalize_subtest } diff --git a/tests/ts/cal/sep1752 b/tests/ts/cal/sep1752 index 986f01a604..3128261cd9 100755 --- a/tests/ts/cal/sep1752 +++ b/tests/ts/cal/sep1752 @@ -26,13 +26,16 @@ USETERM=$( ts_has_option "useterm" "$*" ) MYMONTH="09 1752" MYYEAR="1752" +CAL_TEST_TIME=1516562739 # 21st January 2018 +export CAL_TEST_TIME + function call_cal_simple { ts_log "$1" shift if [ "$USETERM" == "yes" ]; then - $TS_CMD_CAL "$@" + $TS_HELPER_CAL "$@" fi - $TS_CMD_CAL "$@" >> $TS_OUTPUT + $TS_HELPER_CAL "$@" >> $TS_OUTPUT } function call_cal { -- 2.47.3