From 3e6eda669cbd389a83cc2b48567dd4af7faef3b8 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Thu, 20 Jan 2022 12:51:28 -0800 Subject: [PATCH] Revert "Temporarily disable coredumps during library testing on macOS (#63742)" (#64057) This reverts commit 2c28e63f9360280011a3b03c1ca6dc0edce1fae4. Fixes #63761 --- eng/testing/RunnerTemplate.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eng/testing/RunnerTemplate.sh b/eng/testing/RunnerTemplate.sh index 0fb8260a0b9..bfaa743ef6f 100644 --- a/eng/testing/RunnerTemplate.sh +++ b/eng/testing/RunnerTemplate.sh @@ -132,8 +132,7 @@ if [[ "$(uname -s)" == "Darwin" ]]; then # files already in /cores/ at this point. This is being done to prevent # inadvertently flooding the CI machines with dumps. if [[ ! -d "/cores" || ! "$(ls -A /cores)" ]]; then - # FIXME: temporarily disable core dumps - ulimit -c 0 + ulimit -c unlimited fi elif [[ "$(uname -s)" == "Linux" ]]; then -- GitLab