summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-08-02 00:05:18 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-08-02 00:05:18 +0000
commit666b40224324f99b011dc7ee08acf254f718e7b1 (patch)
treedaf7327730aa582068f29d71571de07227c6fb67 /Makefile.rules
parentb7a56ad907e036c74ee1cb91769622c2db5c3f96 (diff)
downloadllvm-666b40224324f99b011dc7ee08acf254f718e7b1.tar.gz
llvm-666b40224324f99b011dc7ee08acf254f718e7b1.tar.bz2
llvm-666b40224324f99b011dc7ee08acf254f718e7b1.tar.xz
tests: Make 'lit' the default test tool. You can still use 'make check-dg' to
run the tests using DejaGNU, but not for much longer. This is a last call for DejaGNU supporters, if no one complains soon the DejaGNU support is going to die. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 0b0f02c9f5..b1744f13bf 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -1858,11 +1858,13 @@ check::
$(EchoCmd) No test directory ; \
fi
-check-lit::
+check-lit:: check
+
+check-dg::
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
$(EchoCmd) Running test suite ; \
- $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
+ $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
else \
$(EchoCmd) No Makefile in test directory ; \
fi ; \