diff options
author | Denys Vlasenko | 2009-11-04 15:31:19 +0100 |
---|---|---|
committer | Denys Vlasenko | 2009-11-04 15:31:19 +0100 |
commit | ded688c6f61c98f1bc1758dc559102c31c919d00 (patch) | |
tree | 59d0d68197c034853d20946c46105f73cb31e308 /testsuite | |
parent | 692bcff577fd3844e2017ffa6864d56f7a2bb5ad (diff) | |
download | busybox-ded688c6f61c98f1bc1758dc559102c31c919d00.zip busybox-ded688c6f61c98f1bc1758dc559102c31c919d00.tar.gz |
fold: fix a corner case. By Tomas Heinrich (heinrich.tomas AT gmail.com)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/fold.tests | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/fold.tests b/testsuite/fold.tests new file mode 100755 index 0000000..5e1f345 --- /dev/null +++ b/testsuite/fold.tests @@ -0,0 +1,14 @@ +#!/bin/sh +# Copyright 2009 by Denys Vlasenko +# Licensed under GPL v2, see file LICENSE for details. + +. testing.sh + +# testing "test name" "options" "expected result" "file input" "stdin" + +testing "fold -s" "fold -w 7 -s" \ + "123456\n\t\nasdf" \ + "" \ + "123456\tasdf" \ + +exit $FAILCOUNT |