From 30ce56dc76f3a098c42c7ac9701fc4a223847fa2 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 13 Feb 2016 17:14:03 -0500 Subject: Implement -iname and -ipath. --- tests.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tests.sh') diff --git a/tests.sh b/tests.sh index 97d274b..cbfefcb 100755 --- a/tests.sh +++ b/tests.sh @@ -215,7 +215,15 @@ function test_0036() { find_diff "//" -maxdepth 0 -name '/' 2>/dev/null } -for i in {1..36}; do +function test_0037() { + find_diff "$basic" -iname '*F*' +} + +function test_0038() { + find_diff "$basic" -ipath "$basic/*F*" +} + +for i in {1..38}; do test="test_$(printf '%04d' $i)" "$test" "$dir" status=$? -- cgit v1.2.3