diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-06-28 17:18:14 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-06-28 17:18:14 -0400 |
commit | f4ff4bce1ea6ae67609d8070117305dc9614b6d2 (patch) | |
tree | 649aa5ff25407a4d74546a2350009073a8faf1ee | |
parent | f309285f7d43b1946b415bbdfce975664cc7fd15 (diff) | |
download | bfs-f4ff4bce1ea6ae67609d8070117305dc9614b6d2.tar.xz |
tests: Relax test_execdir_ulimit so that GNU find passes
-rwxr-xr-x | tests.sh | 6 | ||||
-rw-r--r-- | tests/test_execdir_ulimit.out | 9 |
2 files changed, 12 insertions, 3 deletions
@@ -1420,11 +1420,11 @@ function test_execdir_slashes() { function test_execdir_ulimit() { rm -rf scratch/* - mkdir -p scratch/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t - mkdir -p scratch/a/b/c/d/e/f/g/h/i/j/0/1/2/3/4/5/6/7/8/9 + mkdir -p scratch/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z + mkdir -p scratch/a/b/c/d/e/f/g/h/i/j/k/l/m/0/1/2/3/4/5/6/7/8/9/A/B/C closefrom 4 - ulimit -n 10 + ulimit -n 13 bfs_diff scratch -execdir echo '{}' ';' } diff --git a/tests/test_execdir_ulimit.out b/tests/test_execdir_ulimit.out index 82fb876..7f53982 100644 --- a/tests/test_execdir_ulimit.out +++ b/tests/test_execdir_ulimit.out @@ -8,6 +8,9 @@ ./7 ./8 ./9 +./A +./B +./C ./a ./b ./c @@ -29,3 +32,9 @@ ./s ./scratch ./t +./u +./v +./w +./x +./y +./z |