From: Loic Dachary Date: Thu, 7 May 2015 23:14:47 +0000 (+0200) Subject: tests: need 1024 files per process not 100024 X-Git-Tag: v9.0.2~218^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f36bd0e9679814e12dd3db6551d56ca3a6d08f81;p=ceph.git tests: need 1024 files per process not 100024 Signed-off-by: Loic Dachary --- diff --git a/Makefile.am b/Makefile.am index ce203fa4ea6..eac97bd8914 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,7 +43,7 @@ check-local:: all # exercise cli tools u=`ulimit -u` ; \ p=`expr $(shell nproc) / 2` ; \ - n=`expr $$p \* 100024` ; \ + n=`expr $$p \* 1024` ; \ if ${CHECK_ULIMIT} && echo ${MAKEFLAGS} | grep --quiet -e -j && test $$u -lt $$n ; then \ echo "ulimit -u is $$u which is lower than $$n = $$p / 2 * 1024" ; \ echo "If running make -j$$p check you will likely exceed this limit" ; \