aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/find.test9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/find.test b/tests/find.test
index 25c24400..7f2e6921 100755
--- a/tests/find.test
+++ b/tests/find.test
@@ -94,4 +94,13 @@ testing "-iname (no arguments)" \
testing "" "find dir \( -iname file -o -iname missing \) -exec echo {} \;" \
"dir/file\n" "" ""
+testing "-path glob" \
+ "find dir -path 'dir*e'" "dir/file\n" "" ""
+testing "-wholename glob" \
+ "find dir -wholename 'dir*e'" "dir/file\n" "" ""
+testing "-ipath glob" \
+ "find dir -ipath 'dIr*E'" "dir/file\n" "" ""
+testing "-iwholename glob" \
+ "find dir -iwholename 'dIr*E'" "dir/file\n" "" ""
+
rm -rf dir