diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-15 18:19:11 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-15 18:19:15 +0200 |
commit | f3b79bae474efb5920793daa7921fc56791b233e (patch) | |
tree | a4f7a00345469f6f04ac331f87a313488fc24981 /Dockerfile | |
parent | valgrind: track open file descriptors (diff) | |
download | cimple-f3b79bae474efb5920793daa7921fc56791b233e.tar.gz cimple-f3b79bae474efb5920793daa7921fc56791b233e.zip |
docker: fix failing valgrind runs
Unless ulimit -n is set, I get errors such as this from valgrind:
Assertion 'newfd >= VG_(fd_hard_limit)' failed.
I don't know and don't care what this is about; settings ulimit -n to
something else seems to do the trick. For reference, this can be used:
https://www.mail-archive.com/kde-bugs-dist@kde.org/msg778326.html
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -22,6 +22,7 @@ RUN cd -- "$src_dir" && \ "CONFIGURATION=$CONFIGURATION" \ "DEFAULT_HOST=$DEFAULT_HOST" \ "INSTALL_PREFIX=$install_dir" && \ + ulimit -n 1024 && \ make test CONFIGURATION="$CONFIGURATION" FROM base |