From 70a55cf954ecabb858a12b754f4547bcaf78dc2d Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 29 Jul 2020 11:39:10 -0700 Subject: find: support -type a,b,c. Fixes #227. --- tests/find.test | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/find.test') diff --git a/tests/find.test b/tests/find.test index 17d72fd3..a770f366 100755 --- a/tests/find.test +++ b/tests/find.test @@ -38,6 +38,8 @@ testing "( -type p -o -type d ) -type p" \ testing "-type l -o -type d -type p -o -type f" \ "find dir -type l -o -type d -type p -o -type f | sort" \ "dir/file\ndir/link\n" "" "" +testing "-type l,f" \ + "find dir -type l,f | sort" "dir/file\ndir/link\n" "" "" # Testing short-circuit evaluations -- cgit v1.2.3