diff options
-rw-r--r-- | scripts/guix-qa-frontpage.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/guix-qa-frontpage.in b/scripts/guix-qa-frontpage.in index 114125f..45ed3a4 100644 --- a/scripts/guix-qa-frontpage.in +++ b/scripts/guix-qa-frontpage.in @@ -286,6 +286,13 @@ (setrlimit 'core #f #f)) #:unwind? #t) + (with-exception-handler + (lambda (exn) + (simple-format #t "failed increasing open file limit: ~A\n" exn)) + (lambda () + (setrlimit 'nofile 4096 4096)) + #:unwind? #t) + (let ((core-file (string-append (getcwd) "/core")) (metric |