diff options
author | Karel Zak <kzak@redhat.com> | 2007-06-11 14:45:32 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2007-06-11 14:45:32 +0200 |
commit | 1d9acab1c14a4464a757dbd5d68a1bf1dca117b2 (patch) | |
tree | 01ee619146c1bc907775381ef08be7c88e6931e2 /tests/commands.sh.in | |
parent | 883fff9f85f5ffb68614e6c3740712aafc18d6f4 (diff) | |
download | util-linux-old-1d9acab1c14a4464a757dbd5d68a1bf1dca117b2.tar.gz |
tests: pass all arguments to ts_init, add ts_has_option function
This patch:
- replaces "$1" with "$*" for ts_init function
- add ts_has_option function
- removes some tailing white-spaces
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests/commands.sh.in')
-rw-r--r-- | tests/commands.sh.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/commands.sh.in b/tests/commands.sh.in index 26c77791..86f3d11a 100644 --- a/tests/commands.sh.in +++ b/tests/commands.sh.in @@ -3,6 +3,7 @@ TS_TOPDIR=$TOPDIR/tests # helpers TS_HELPER_SYSINFO="$TS_TOPDIR/helpers/mnt_test_sysinfo" +TS_HELPER_LIBPRELOAD_TIME="$TS_TOPDIR/helpers/.libs/libpreload-time.so" # external commands TS_ECMD_BLKID="@BLKID@" @@ -26,8 +27,11 @@ TS_CMD_COL=${TS_CMD_COL:-"$TOPDIR/text-utils/col"} TS_CMD_NAMEI=${TS_CMD_NAMEI-"$TOPDIR/misc-utils/namei"} TS_CMD_LOOK=${TS_CMD_LOOK-"$TOPDIR/misc-utils/look"} +TS_CMD_CAL=${TS_CMD_CAL-"$TOPDIR/misc-utils/cal"} TS_CMD_CHECKTTY=${TS_CMD_CHECKTTY-"$TOPDIR/login-utils/checktty_test"} TS_CMD_HWCLOCK=${TS_CMD_HWCLOCK-"$TOPDIR/hwclock/hwclock"} + + |