diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-09-18 21:29:59 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2018-09-18 22:04:07 -0400 |
commit | abf4394ae34bf25a17efb9fa560791005a6b217b (patch) | |
tree | 8717654c659deead1c8c162407cf2633ccb14ea5 /tests.sh | |
parent | 727562e99082e9ed808b5ff6e02b65b9cf5b65c3 (diff) | |
download | bfs-abf4394ae34bf25a17efb9fa560791005a6b217b.tar.xz |
spawn: New posix_spawn()-like API for exec
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -438,7 +438,6 @@ bfs_tests=( test_expr_path_flag test_colors test_deep_strict - test_deep_stricter ) BSD=yes @@ -1523,14 +1522,6 @@ function test_deep_strict() { bfs_diff deep -mindepth 18 -exec /bin/bash -c 'echo "${1:0:6}/.../${1##*/} (${#1})"' /bin/bash '{}' \; } -function test_deep_stricter() { - closefrom 4 - - # So few fds that pipe() fails in the -exec implementation - ulimit -n 6 - bfs_diff deep -mindepth 18 -exec /bin/bash -c 'echo "${1:0:6}/.../${1##*/} (${#1})"' /bin/bash '{}' \; -} - function test_exit() { invoke_bfs basic -name foo -exit 42 if [ $? -ne 42 ]; then |