summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/test/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/test/Makefile b/llvm/test/Makefile
index 4955c2eb895..ede1b443174 100644
--- a/llvm/test/Makefile
+++ b/llvm/test/Makefile
@@ -78,9 +78,13 @@ endif
# Both AuroraUX & Solaris do not have the -m flag for ulimit
ifeq ($(HOST_OS),SunOS)
ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
-else
+else # !SunOS
+ifeq ($(HOST_OS),AuroraUX)
+ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
+else # !AuroraUX
ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ;
-endif
+endif # AuroraUX
+endif # SunOS
ifneq ($(RUNTEST),)
check-local:: site.exp
OpenPOWER on IntegriCloud