[llvm-commits] [test-suite] r91030 - /test-suite/trunk/TEST.nightly.Makefile

Daniel Dunbar daniel at zuster.org
Wed Dec 9 17:14:43 PST 2009


Author: ddunbar
Date: Wed Dec  9 19:14:43 2009
New Revision: 91030

URL: http://llvm.org/viewvc/llvm-project?rev=91030&view=rev
Log:
Remove some unnecessary dependencies.

Modified:
    test-suite/trunk/TEST.nightly.Makefile

Modified: test-suite/trunk/TEST.nightly.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.nightly.Makefile?rev=91030&r1=91029&r2=91030&view=diff

==============================================================================
--- test-suite/trunk/TEST.nightly.Makefile (original)
+++ test-suite/trunk/TEST.nightly.Makefile Wed Dec  9 19:14:43 2009
@@ -58,7 +58,7 @@
 
 # LLC tests
 $(PROGRAMS_TO_TEST:%=Output/%.nightly.llc.report.txt): \
-Output/%.nightly.llc.report.txt: Output/%.llvm.bc Output/%.exe-llc
+Output/%.nightly.llc.report.txt: Output/%.exe-llc
 	@echo > $@
 	-head -n 100 Output/$*.exe-llc >> $@
 	@-if test -f Output/$*.exe-llc; then \
@@ -90,7 +90,7 @@
 
 # OPT experimental tests
 $(PROGRAMS_TO_TEST:%=Output/%.nightly.opt-beta.report.txt): \
-Output/%.nightly.opt-beta.report.txt: Output/%.llvm.optbeta.bc Output/%.exe-opt-beta
+Output/%.nightly.opt-beta.report.txt: Output/%.exe-opt-beta
 	@echo > $@
 	-head -n 100 Output/$*.exe-opt-beta >> $@
 	@-if test -f Output/$*.exe-opt-beta; then \
@@ -106,7 +106,7 @@
 
 # CBE tests
 $(PROGRAMS_TO_TEST:%=Output/%.nightly.cbe.report.txt): \
-Output/%.nightly.cbe.report.txt: Output/%.llvm.bc Output/%.exe-cbe
+Output/%.nightly.cbe.report.txt: Output/%.exe-cbe
 	@echo > $@
 	-head -n 100 Output/$*.exe-cbe >> $@
 	@-if test -f Output/$*.exe-cbe; then \
@@ -120,7 +120,7 @@
 
 # JIT tests
 $(PROGRAMS_TO_TEST:%=Output/%.nightly.jit.report.txt): \
-Output/%.nightly.jit.report.txt: Output/%.llvm.bc Output/%.exe-jit
+Output/%.nightly.jit.report.txt: Output/%.exe-jit
 	@echo > $@
 	-head -n 100 Output/$*.exe-jit >> $@
 	@-if test -f Output/$*.exe-jit; then \





More information about the llvm-commits mailing list