summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2004-12-04 06:25:08 +0000
committerTanya Lattner <tonic@nondot.org>2004-12-04 06:25:08 +0000
commit9f97b4c2288b41ff235b0774174de0782f0df98b (patch)
treeff3ecb20faccf44e66fc060cbf4d54a2477ce1ef /test/Makefile
parent02dce169c80b1c1569b7a6fe658dcbc8a4fef760 (diff)
downloadllvm-9f97b4c2288b41ff235b0774174de0782f0df98b.tar.gz
llvm-9f97b4c2288b41ff235b0774174de0782f0df98b.tar.bz2
llvm-9f97b4c2288b41ff235b0774174de0782f0df98b.tar.xz
Made it default to check instead of check-dejagnu.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile29
1 files changed, 4 insertions, 25 deletions
diff --git a/test/Makefile b/test/Makefile
index ae7fea1950..5caf29d0b9 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -11,14 +11,9 @@ LEVEL = ..
DIRS =
#
-# Make QMTest the default for testing features and regressions
-# Do this first to force QMTest to run first
+# Make Dejagnu the default for testing
#
-ifdef TESTSUITE
-all:: check-dejagnu
-else
-all:: qmtest
-endif
+all:: check
# Include other test rules
include Makefile.tests
@@ -110,8 +105,6 @@ gui::
$(QMTEST) gui --no-browser --daemon
# Also get rid of qmtest garbage when we 'make clean' in this directory.
-clean:: qmtest-clean
-
qmtest-clean:
$(RM) -rf $(LLVM_OBJ_ROOT)/test/tmp
$(RM) -f $(LLVM_SRC_ROOT)/test/QMTest/*.pyo \
@@ -127,12 +120,11 @@ ifdef TESTSUITE
RUNTESTFLAGS := --tool $(TESTSUITE)
endif
-check-dejagnu: site.exp
+check:: site.exp
-PATH=$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH) \
$(RUNTEST) $(RUNTESTFLAGS)
-
-dejagnu-clean:
+clean::
$(RM) -rf `find $(LLVM_OBJ_ROOT)/test/Regression -name Output -type d -print`
site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
@@ -153,16 +145,3 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
@test ! -f site.exp || mv site.exp site.bak
@mv site.tmp site.exp
-#===------------------------------------------------------------------------===#
-# quick-test utility. Just runs TestRunner.sh on all the *.ll files in a
-# directory. Use like this:
-# cd llvm/test ; make quick-test QUICKTEST=Regression/Bytecode
-# where QUICKTEST specifies the directory you want to run the tests on.
-#===------------------------------------------------------------------------===#
-quick-test:
- @if test -d "${QUICKTEST}" ; then \
- cd $(LLVM_SRC_ROOT)/test/$(QUICKTEST) ; \
- find . -name \*.ll -print -exec $(LLVM_SRC_ROOT)/test/TestRunner.sh {} \; ; \
- else \
- echo "Set QUICKTEST=<some directory with TestRunner.sh .ll files in it" ; \
- fi