diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-11-07 08:24:59 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-11-07 08:24:59 +0000 |
commit | 38ed80aefb37185686d4b93a42375030b6f26c1a (patch) | |
tree | d5ffb264d1653bdfbe55ab4751db47e883bcd1e3 | |
parent | ec3a78f7adec15649d9d5885397ef3e11c6897e5 (diff) |
Added support to specify which test suite dejagnu should run (Feature or Regression). Use TEST=suite
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17572 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | test/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -37,4 +37,4 @@ check :: tools-only: all check-dejagnu: - cd test; $(MAKE) check-dejagnu
\ No newline at end of file + cd test; $(MAKE) check-dejagnu $(TEST) diff --git a/test/Makefile b/test/Makefile index 7642b64aea..1f0dea5233 100644 --- a/test/Makefile +++ b/test/Makefile @@ -123,7 +123,7 @@ EXPECT = expect RUNTEST = runtest check-dejagnu: site.exp - $(RUNTEST) + $(RUNTEST) --tool $(TEST) dejagnu-clean: $(RM) -rf `find $(LLVM_OBJ_ROOT)/test/Regression -name Output -type d -print` |