[llvm-commits] CVS: llvm/test/Makefile

Reid Spencer reid at x10sys.com
Mon Nov 8 22:28:43 PST 2004



Changes in directory llvm/test:

Makefile updated: 1.65 -> 1.66
---
Log message:

Add a quick-test target that uses QUICKTEST variable to quickly run a
portion of the test suite. e.g.:

make quck-test QUICKTEST=Regression/Bytecode


---
Diffs of the changes:  (+7 -0)

Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.65 llvm/test/Makefile:1.66
--- llvm/test/Makefile:1.65	Sun Nov  7 23:44:05 2004
+++ llvm/test/Makefile	Tue Nov  9 00:28:32 2004
@@ -149,3 +149,10 @@
 	@test ! -f site.exp || mv site.exp site.bak
 	@mv site.tmp site.exp
 
+quick-test:
+	@if test -d "${QUICKTEST}" ; then \
+	  cd $(LLVM_SRC_ROOT)/test/$(QUICKTEST) ; \
+	  find . -name \*.ll -print -exec $(LLVM_SRC_ROOT)/test/TestRunner.sh {} \; ; \
+	else \
+	  echo "Set QUICKTEST=<some directory with TestRunner.sh .ll files in it" ; \
+	fi






More information about the llvm-commits mailing list