From f36bd0e9679814e12dd3db6551d56ca3a6d08f81 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Fri, 8 May 2015 01:14:47 +0200 Subject: [PATCH] tests: need 1024 files per process not 100024 Signed-off-by: Loic Dachary --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index ce203fa4ea67..eac97bd89147 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" ; \ -- 2.47.3