From: Tanya Lattner Date: Sun, 7 Nov 2004 08:24:59 +0000 (+0000) Subject: Added support to specify which test suite dejagnu should run (Feature or Regression... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=38ed80aefb37185686d4b93a42375030b6f26c1a;p=oota-llvm.git 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 --- diff --git a/Makefile b/Makefile index f2dd759c093..a22444827e0 100644 --- a/Makefile +++ b/Makefile @@ -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 7642b64aea5..1f0dea5233e 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`