forked from OSchip/llvm-project
Rip out legacy DejaGNU support from our Makefiles. This hasn't been the
default in forever, and hasn't even worked since most of the .exp files were removed. llvm-svn: 159307
This commit is contained in:
parent
92aae0f7a4
commit
256d3a9eaa
|
@ -27,7 +27,6 @@ $(warning GREP_OPTIONS environment variable may interfere with test results)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef VERBOSE
|
ifdef VERBOSE
|
||||||
RUNTESTFLAGS := $(VERBOSE)
|
|
||||||
LIT_ARGS := -v
|
LIT_ARGS := -v
|
||||||
else
|
else
|
||||||
LIT_ARGS := -s -v
|
LIT_ARGS := -s -v
|
||||||
|
@ -42,7 +41,6 @@ ifdef TESTSUITE
|
||||||
LIT_TESTSUITE := $(TESTSUITE)
|
LIT_TESTSUITE := $(TESTSUITE)
|
||||||
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
|
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
|
||||||
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
|
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
|
||||||
RUNTESTFLAGS += --tool $(CLEANED_TESTSUITE)
|
|
||||||
else
|
else
|
||||||
LIT_TESTSUITE := .
|
LIT_TESTSUITE := .
|
||||||
endif
|
endif
|
||||||
|
@ -70,16 +68,6 @@ endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
IGNORE_TESTS :=
|
|
||||||
|
|
||||||
ifndef RUNLLVM2CPP
|
|
||||||
IGNORE_TESTS += llvm2cpp.exp
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef IGNORE_TESTS
|
|
||||||
RUNTESTFLAGS += --ignore "$(strip $(IGNORE_TESTS))"
|
|
||||||
endif
|
|
||||||
|
|
||||||
# ulimits like these are redundantly enforced by the buildbots, so
|
# ulimits like these are redundantly enforced by the buildbots, so
|
||||||
# just removing them here won't work.
|
# just removing them here won't work.
|
||||||
# Both AuroraUX & Solaris do not have the -m flag for ulimit
|
# Both AuroraUX & Solaris do not have the -m flag for ulimit
|
||||||
|
@ -94,16 +82,6 @@ ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 1024000 ;
|
||||||
endif # AuroraUX
|
endif # AuroraUX
|
||||||
endif # SunOS
|
endif # SunOS
|
||||||
|
|
||||||
ifneq ($(RUNTEST),)
|
|
||||||
check-local-dg:: site.exp
|
|
||||||
( $(ULIMIT) \
|
|
||||||
PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(LLVMGCCDIR)/bin:$(PATH)" \
|
|
||||||
$(RUNTEST) $(RUNTESTFLAGS) )
|
|
||||||
else
|
|
||||||
check-local-dg:: site.exp
|
|
||||||
@echo "*** dejagnu not found. Make sure 'runtest' is in your PATH, then reconfigure LLVM."
|
|
||||||
endif
|
|
||||||
|
|
||||||
check-local-lit:: lit.site.cfg Unit/lit.site.cfg
|
check-local-lit:: lit.site.cfg Unit/lit.site.cfg
|
||||||
( $(ULIMIT) \
|
( $(ULIMIT) \
|
||||||
$(LLVM_SRC_ROOT)/utils/lit/lit.py $(LIT_ARGS) $(LIT_TESTSUITE) )
|
$(LLVM_SRC_ROOT)/utils/lit/lit.py $(LIT_ARGS) $(LIT_TESTSUITE) )
|
||||||
|
|
Loading…
Reference in New Issue