diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/find.test | 2 |
1 files changed, 2 insertions, 0 deletions
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 |