From d93a9f2aafa405b271e2aabca4a8d615a50dba90 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Tue, 15 Sep 2015 12:12:24 -0700 Subject: [PATCH] [travis CI] Run ulimit -n 2000 Summary: This should let us pass tests on OS X. Test Plan: none yet Reviewers: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D46989 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 98b83a15e8..98004feb65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,7 @@ matrix: before_script: - if [ -n "${COMPILER}" ]; then CXX=${COMPILER}; fi - if [[ $(uname -s) == 'Darwin' ]]; then brew install gflags snappy; fi + - ulimit -n 2000 || true # Lousy hack to disable use and testing of fallocate, which doesn't behave quite # as EnvPosixTest::AllocateTest expects within the Travis OpenVZ environment.