From 3437f30ae9a24740bf3e9dd2b5db7482a5c1dfb8 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 29 Aug 2019 13:44:59 -0700 Subject: find: fix -name corner case. This fixes the case where someone's done something (weird) like: find src/*.c -name foo.c Previously the match would fail because one side of the comparison was already a path. --- tests/find.test | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/find.test') diff --git a/tests/find.test b/tests/find.test index b3e2c4fa..1f59149b 100755 --- a/tests/find.test +++ b/tests/find.test @@ -122,4 +122,7 @@ testing "missing root error" \ "LANG=C find -L dir/missing-root 2>err ; grep -q dir/missing-root err || echo missing error" \ "" "" "" +testing "-path match root" "find dir/f* -path dir/file" "dir/file\n" "" "" +testing "-name match root" "find dir/f* -name file" "dir/file\n" "" "" + rm -rf dir -- cgit v1.2.3