Merge test suite.

This commit is contained in:
Matt Kraai
2001-10-30 23:11:20 +00:00
parent 999623e973
commit 3889078dbe
73 changed files with 660 additions and 0 deletions

View File

@@ -0,0 +1 @@
test $(echo abcd | busybox cut -c 3) = c

View File

@@ -0,0 +1 @@
test $(echo abcd | busybox cut -c 1-2) = ab

View File

@@ -0,0 +1 @@
test $(echo -e "f1\tf2\tf3" | busybox cut -f 2) = f2

View File

@@ -0,0 +1 @@
test $(echo abcd | busybox cut -c -3) = abc

View File

@@ -0,0 +1 @@
test $(echo abcd | busybox cut -c 3-) = cd