diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-01-02 21:23:42 -0700 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-01-02 21:23:42 -0700 |
commit | 71c8f67cb861f5334d853a23b7aafa3c97a802f6 (patch) | |
tree | 7058aeb566153cda0bbc7445b8cb4cb0ed074c3c /tests.sh | |
parent | 9f297d68f5bf80eed89feb7dbf465339f62d8ba0 (diff) | |
download | bfs-71c8f67cb861f5334d853a23b7aafa3c97a802f6.tar.xz |
tests: Add tests for -quit
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -760,9 +760,29 @@ function test_0122() { bfs_diff basic -type f -size 1T } +function test_0123() { + [ "$BSD" -o "$GNU" ] || return 0 + bfs_diff basic/g -print -name g -quit +} + +function test_0124() { + [ "$BSD" -o "$GNU" ] || return 0 + bfs_diff basic/g -print -name h -quit +} + +function test_0125() { + [ "$BSD" -o "$GNU" ] || return 0 + bfs_diff basic/g -depth -print -name g -quit +} + +function test_0126() { + [ "$BSD" -o "$GNU" ] || return 0 + bfs_diff basic/g -depth -print -name h -quit +} + result=0 -for i in {1..122}; do +for i in {1..126}; do test="test_$(printf '%04d' $i)" if [ -t 1 ]; then |