summaryrefslogtreecommitdiffstats
path: root/tests.sh
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2018-09-18 21:29:59 -0400
committerTavian Barnes <tavianator@tavianator.com>2018-09-18 22:04:07 -0400
commitabf4394ae34bf25a17efb9fa560791005a6b217b (patch)
tree8717654c659deead1c8c162407cf2633ccb14ea5 /tests.sh
parent727562e99082e9ed808b5ff6e02b65b9cf5b65c3 (diff)
downloadbfs-abf4394ae34bf25a17efb9fa560791005a6b217b.tar.xz
spawn: New posix_spawn()-like API for exec
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests.sh b/tests.sh
index 1ad1568..c732979 100755
--- a/tests.sh
+++ b/tests.sh
@@ -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