aboutsummaryrefslogtreecommitdiff
path: root/tests/find.test
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-02-04 10:49:52 -0800
committerRob Landley <rob@landley.net>2016-02-05 12:30:16 -0600
commit2fd8d1a2595ee49f01d2987b125b642b7f50ea65 (patch)
tree4b7cdf41232624bbf6dcfce305e53e0d773e05c5 /tests/find.test
parentc02619bbc0acbb2b4588933ec1bbb7b7026adbb6 (diff)
downloadtoybox-2fd8d1a2595ee49f01d2987b125b642b7f50ea65.tar.gz
Fix segfault when `find -iname` gets no argument.
Diffstat (limited to 'tests/find.test')
-rwxr-xr-xtests/find.test16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/find.test b/tests/find.test
index 4e987b60..710684ec 100755
--- a/tests/find.test
+++ b/tests/find.test
@@ -74,4 +74,20 @@ testing "find unterminated -exec {}" \
testing "find -exec {} +" \
"find dir -type f -exec ls {} +" "dir/file\n" "" ""
+# `find . -iname` was segfaulting
+testing "find -name file" \
+ "find dir -name file" "dir/file\n" "" ""
+testing "find -name FILE" \
+ "find dir -name FILE" "" "" ""
+
+testing "find -iname file" \
+ "find dir -iname FILE" "dir/file\n" "" ""
+testing "find -iname FILE" \
+ "find dir -iname FILE" "dir/file\n" "" ""
+
+
+testing "find -name (no arguments)" \
+ "find dir -name 2>&1" "find: '-name' needs 1 arg\n" "" ""
+testing "find -iname (no arguments)" \
+ "find dir -iname 2>&1" "find: '-iname' needs 1 arg\n" "" ""
rm -rf dir