X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FMakefile;h=e7776f8459de05b3b574a964e6560a03cfcb0b68;hb=ad6b1fdaf94ed9cf44798ed6fd9ca9ed7455d1db;hp=1c8feba8f7606902025a02ab684c5a4efb838bac;hpb=d1ba06bf131a9d217426529d2e28af1f2eeed47a;p=oota-llvm.git diff --git a/test/Makefile b/test/Makefile index 1c8feba8f76..e7776f8459d 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