summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2012-07-04 12:02:20 +0200
committerPádraig Brady <P@draigBrady.com>2012-07-06 10:41:50 +0100
commitd569dbe5871d69063bdd05a42d5b3b7bfc233cfd (patch)
treeca3d4fa5ecc49226623a4020a2a4645e9a7446bd /tests
parent71df4e29ed27bf0c7b45f1aa72e3523a9db6b607 (diff)
downloadcoreutils-d569dbe5871d69063bdd05a42d5b3b7bfc233cfd.tar.xz
tests: sort-merge-fdlimit: reduce the limit by one
* tests/misc/sort-merge-fdlimit: As a consequence of commit v8.17-34-g59daf05, we can reduce the descriptor limit by one.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/misc/sort-merge-fdlimit2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/sort-merge-fdlimit b/tests/misc/sort-merge-fdlimit
index ee1575aed..7ce109c1a 100755
--- a/tests/misc/sort-merge-fdlimit
+++ b/tests/misc/sort-merge-fdlimit
@@ -65,7 +65,7 @@ done
(seq 6 && echo 6) >exp || fail=1
echo 6 >out || fail=1
(exec 3<&- 4<&- 5<&- 6</dev/null 7<&6 8<&6 9<&6 &&
- ulimit -n 11 &&
+ ulimit -n 10 &&
sort -n -m --batch-size=7 -o out out in/1 in/2 in/3 in/4 in/5 out
) &&
compare exp out || fail=1