diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-11-16 23:32:30 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-11-16 23:32:30 +0000 |
commit | feada9462b4917fe48e18fca8d21335b3c51e802 (patch) | |
tree | e5c95298ea75b957dd1247fcc8e7c5fc54d21d41 /test/Makefile | |
parent | 9f07f3b009b8c82e0d8d314c8ac8883a4478a4ac (diff) |
Revert the test from r88984. It relies on being able to mmap 16GB of
address space (though it only uses a small fraction of that), and the
buildbots disallow that.
Also add a comment to the Makefile's ulimit line warning future
developers that changing it won't work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88994 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile index 1c8feba8f7..e7776f8459 100644 --- a/test/Makefile +++ b/test/Makefile @@ -75,14 +75,16 @@ ifdef IGNORE_TESTS RUNTESTFLAGS += --ignore "$(strip $(IGNORE_TESTS))" endif +# ulimits like these are redundantly enforced by the buildbots, so +# just removing them here won't work. # Both AuroraUX & Solaris do not have the -m flag for ulimit ifeq ($(HOST_OS),SunOS) -ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; +ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ; else # !SunOS ifeq ($(HOST_OS),AuroraUX) -ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; +ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ; else # !AuroraUX -ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; +ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ; endif # AuroraUX endif # SunOS |