diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-02-13 17:14:03 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-02-13 17:14:03 -0500 |
commit | 30ce56dc76f3a098c42c7ac9701fc4a223847fa2 (patch) | |
tree | 15e8a0aed66d93fb26c9a819846527eada1a0905 /tests.sh | |
parent | 4cd28ed2aa3f098a1d35dd44ecec27002fadb89b (diff) | |
download | bfs-30ce56dc76f3a098c42c7ac9701fc4a223847fa2.tar.xz |
Implement -iname and -ipath.
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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=$? |