diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-06-28 00:03:13 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-06-28 00:03:13 +0000 |
commit | c00bdab5a8dc3545e270b7a363042d15ecb10913 (patch) | |
tree | 3d192b545d4802d46d58ca7b9bc7634f1199570e /llvm/projects | |
parent | a1e9c8e783e5736288dcd91f4cf4f9009cf68d78 (diff) | |
download | bcm5719-llvm-c00bdab5a8dc3545e270b7a363042d15ecb10913.tar.gz bcm5719-llvm-c00bdab5a8dc3545e270b7a363042d15ecb10913.zip |
Remove 'check-dg', a wrapper around 'check-local-dg' which was just
nuked.
Add a comment that the 'check-lit' rule is really just a legacy of
having two test runners.
llvm-svn: 159310
Diffstat (limited to 'llvm/projects')
-rw-r--r-- | llvm/projects/sample/Makefile.llvm.rules | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/llvm/projects/sample/Makefile.llvm.rules b/llvm/projects/sample/Makefile.llvm.rules index c980d6b6679..a6553020f86 100644 --- a/llvm/projects/sample/Makefile.llvm.rules +++ b/llvm/projects/sample/Makefile.llvm.rules @@ -1866,20 +1866,9 @@ check:: $(EchoCmd) No test directory ; \ fi +# An alias dating from when both lit and DejaGNU test runners were used. 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-dg ; \ - else \ - $(EchoCmd) No Makefile in test directory ; \ - fi ; \ - else \ - $(EchoCmd) No test directory ; \ - fi - check-all:: $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \ if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \ |