about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-11-18 15:06:53 +0100
committerLeah Neukirchen <leah@vuxu.org>2017-11-18 15:06:53 +0100
commita3fd52667c4a15ba54cd1942b7ffc52cef2a3a60 (patch)
tree4e58b5799be3ace82461bf633dfa3d3b5138e4f8
parentf6485c2e162f1845fd896b6cb8391d52b58d528b (diff)
downloadxe-a3fd52667c4a15ba54cd1942b7ffc52cef2a3a60.tar.gz
xe-a3fd52667c4a15ba54cd1942b7ffc52cef2a3a60.tar.xz
xe-a3fd52667c4a15ba54cd1942b7ffc52cef2a3a60.zip
t/limits.t: make test more lax (works with up to 8k envp now)
-rwxr-xr-xt/limits.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/limits.t b/t/limits.t
index 8692a2e..efe5199 100755
--- a/t/limits.t
+++ b/t/limits.t
@@ -15,10 +15,10 @@ dd if=/dev/zero bs=1 count=17711 2>/dev/null |
 EOF
 
 tap3 'argslen check' <<'EOF'
-perl -e 'print "x"x8000, "\n" for 1..42' |
+perl -e 'print "x"x12000, "\n" for 1..23' |
 	xe -N0 -s 'echo $#'
 >>>
-16
-16
 10
+10
+3
 EOF