aboutsummaryrefslogtreecommitdiff
path: root/testsuite/cut.tests
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-11-26 05:38:20 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-11-26 05:38:20 +0000
commit4e1e7205235510b3adeb415b4d8997932276cb81 (patch)
treee2d874580db07b436cbb0e6b326adbf0438a3e3e /testsuite/cut.tests
parented270a5f32e4fee0d4b30595c888df54ac878fba (diff)
downloadbusybox-4e1e7205235510b3adeb415b4d8997932276cb81.tar.gz
testsuite: add tests for cut and grep;
slight improvements to infrastructure
Diffstat (limited to 'testsuite/cut.tests')
-rw-r--r--testsuite/cut.tests19
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/cut.tests b/testsuite/cut.tests
new file mode 100644
index 000000000..e332e801d
--- /dev/null
+++ b/testsuite/cut.tests
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# grep tests.
+# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
+# Licensed under GPL v2, see file LICENSE for details.
+
+. testing.sh
+
+# testing "test name" "options" "expected result" "file input" "stdin"
+# file input will be file called "input"
+# test can create a file "actual" instead of writing to stdout
+
+testing "cut '-' (stdin) and multi file handling" \
+ "cut -d' ' -f2 - input" \
+ "over\n""quick\n" \
+ "the quick brown fox\n" \
+ "jumps over the lazy dog\n" \
+
+exit $FAILCOUNT