From 433fa8d536a6787cb3962ada3e97538827a7c4f0 Mon Sep 17 00:00:00 2001 From: Kunhoon Baik Date: Thu, 9 Sep 2021 09:19:10 +0900 Subject: [PATCH] Fix test nsjail configuration The number of nsjail's default nofile is 32. In some target platform, it is too low. Thus, this patch set enough large number to nofile. --- test/runner-sandbox.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner-sandbox.cfg b/test/runner-sandbox.cfg index f4ec235..fefc41d 100644 --- a/test/runner-sandbox.cfg +++ b/test/runner-sandbox.cfg @@ -32,7 +32,7 @@ rlimit_cpu_type: INF #rlimit_fsize: 0 # Maximum number of files -#rlimit_nofile: 0 +rlimit_nofile: 1024 # Maximum number of processes # Warn: Documentation says this is tricky, fiddle at your own risk! -- 2.34.1