diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-14 15:15:09 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-14 15:15:09 +0000 |
commit | 1c9caced63828327ebcac229df74e52006962914 (patch) | |
tree | 1639b5fc5f0b95bc16d55913d85a8c8c95caddc3 /test/Makefile | |
parent | 1ab70ef650133ddcf21d8e38dd37a94b6c819cea (diff) |
Delete support for AuroraUX.
auroraux.org is not resolving.
I will add this to the release notes as soon as I figure out where to put the
3.6 release notes :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215645 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/Makefile b/test/Makefile index c6af8a78483..92ced039d5c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -83,19 +83,15 @@ 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 +# Solaris does not have the -m flag for ulimit ifeq ($(HOST_OS),SunOS) ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ; else # !SunOS -ifeq ($(HOST_OS),AuroraUX) -ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ; -else # !AuroraUX # Newer versions of python try to allocate an insane amount of address space for # its thread-local storage, don't set a limit here. # When -v is not used, then -s has to be used to limit the stack size. # FIXME: Those limits should be enforced by lit instead of globally. ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -s 8192 ; -endif # AuroraUX endif # SunOS check-local:: lit.site.cfg Unit/lit.site.cfg |