Merge test suite.
This commit is contained in:
1
testsuite/cut/cut-cuts-a-character
Normal file
1
testsuite/cut/cut-cuts-a-character
Normal file
@@ -0,0 +1 @@
|
||||
test $(echo abcd | busybox cut -c 3) = c
|
1
testsuite/cut/cut-cuts-a-closed-range
Normal file
1
testsuite/cut/cut-cuts-a-closed-range
Normal file
@@ -0,0 +1 @@
|
||||
test $(echo abcd | busybox cut -c 1-2) = ab
|
1
testsuite/cut/cut-cuts-a-field
Normal file
1
testsuite/cut/cut-cuts-a-field
Normal file
@@ -0,0 +1 @@
|
||||
test $(echo -e "f1\tf2\tf3" | busybox cut -f 2) = f2
|
1
testsuite/cut/cut-cuts-an-open-range
Normal file
1
testsuite/cut/cut-cuts-an-open-range
Normal file
@@ -0,0 +1 @@
|
||||
test $(echo abcd | busybox cut -c -3) = abc
|
1
testsuite/cut/cut-cuts-an-unclosed-range
Normal file
1
testsuite/cut/cut-cuts-an-unclosed-range
Normal file
@@ -0,0 +1 @@
|
||||
test $(echo abcd | busybox cut -c 3-) = cd
|
Reference in New Issue
Block a user