diff options
author | Karel Zak <kzak@redhat.com> | 2007-01-30 13:18:51 +0100 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2007-01-30 13:52:48 +0100 |
commit | e9ce5ccc90c63cb1c499ad01800e638ece23f8b0 (patch) | |
tree | 251163add0f5966824a79409005502cb1c70e328 /tests/commands.sh.in | |
parent | 06b04b23cdff2f038e4f341a1247c51b5261f332 (diff) | |
download | util-linux-old-e9ce5ccc90c63cb1c499ad01800e638ece23f8b0.tar.gz |
col: getwchar() errors shouldn't be hidden
The col truncates output when multibyte errors is detected, but the problem is
not reported to stderr and return code is still same like for successful exit.
This stupid behaviour is fixed by this patch.
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests/commands.sh.in')
-rw-r--r-- | tests/commands.sh.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/commands.sh.in b/tests/commands.sh.in index 4345a28f..92deda21 100644 --- a/tests/commands.sh.in +++ b/tests/commands.sh.in @@ -11,3 +11,5 @@ TS_CMD_SWAPON=${TS_CMD_MOUNT:-"$TOPDIR/mount/swapon"} TS_CMD_SWAPOFF=${TS_CMD_MOUNT:-"$TOPDIR/mount/swapoff"} TS_CMD_IPCS=${TS_CMD_IPCS:-"$TOPDIR/sys-utils/ipcs"} + +TS_CMD_COL=${TS_CMD_COL:-"$TOPDIR/text-utils/col"} |