From c0f18ad23087720e9bca5b08c41555388a4e0b87 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 27 Jan 2016 20:38:56 -0500 Subject: [PATCH] tests: filter out ulimit error messages to avoid corruption of .res files Signed-off-by: Jean Privat --- tests/tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests.sh b/tests/tests.sh index 99e3008..8766a0d 100755 --- a/tests/tests.sh +++ b/tests/tests.sh @@ -90,8 +90,8 @@ saferun() esac done ( - ulimit -f "$filelimit" - ulimit -t "$usertimelimit" + ulimit -f "$filelimit" 2> /dev/null + ulimit -t "$usertimelimit" 2> /dev/null if test -d "$1"; then find $1 | sort elif test -n "$TIME"; then -- 1.7.9.5