[llvm-commits] [hlvm] r38326 - /hlvm/trunk/Makefile

Reid Spencer reid at x10sys.com
Sat Jul 7 17:02:23 PDT 2007


Author: reid
Date: Sat Jul  7 19:02:22 2007
New Revision: 38326

URL: http://llvm.org/viewvc/llvm-project?rev=38326&view=rev
Log:
Make it easy to specify the test suites that you want to run by specifying the
SUITES= variable on the command line. The value of SUITES should be a space
separated list of the names of the test suites you want to run. Test suite names
are the names of the directories under "test".

Modified:
    hlvm/trunk/Makefile

Modified: hlvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/Makefile?rev=38326&r1=38325&r2=38326&view=diff

==============================================================================
--- hlvm/trunk/Makefile (original)
+++ hlvm/trunk/Makefile Sat Jul  7 19:02:22 2007
@@ -20,6 +20,8 @@
 
 SCONSOPTS := -Q -j 2
 
+SUITES := all
+
 .PHONY: all debug Debug optimized Optimized release Release check clean \
 	install hlvm tools
 
@@ -43,7 +45,7 @@
 	inline=1 small=0 strip=0 profile=1 confpath=$(MYPATH) prefix=$(MYPREFIX)
 
 check: 
-	scons -Q check mode=$(MYMODE)
+	scons -Q check mode=$(MYMODE) suites=$(SUITES)
 
 clean:
 	scons $(SCONSOPTS) --clean mode=$(MYMODE)





More information about the llvm-commits mailing list