[llvm-commits] [test-suite] r102408 - /test-suite/trunk/TEST.nightly.Makefile
Dan Gohman
gohman at apple.com
Mon Apr 26 18:23:48 PDT 2010
Author: djg
Date: Mon Apr 26 20:23:48 2010
New Revision: 102408
URL: http://llvm.org/viewvc/llvm-project?rev=102408&view=rev
Log:
Add semicolons to fix an apparent cut+pasto.
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=102408&r1=102407&r2=102408&view=diff
==============================================================================
--- test-suite/trunk/TEST.nightly.Makefile (original)
+++ test-suite/trunk/TEST.nightly.Makefile Mon Apr 26 20:23:48 2010
@@ -61,7 +61,7 @@
Output/%.nightly.llc.report.txt: Output/%.exe-llc
@echo > $@
@-if test -f Output/$*.exe-llc; then \
- head -n 100 Output/$*.exe-llc >> $@ \
+ head -n 100 Output/$*.exe-llc >> $@; \
echo "TEST-PASS: llc $(RELDIR)/$*" >> $@;\
printf "TEST-RESULT-llc: " >> $@;\
grep "Total Execution Time" Output/$*.llc.s.info | tail -n 1 >> $@;\
@@ -77,7 +77,7 @@
Output/%.nightly.llc-beta.report.txt: Output/%.llvm.bc Output/%.exe-llc-beta
@echo > $@
@-if test -f Output/$*.exe-llc-beta; then \
- head -n 100 Output/$*.exe-llc-beta >> $@ \
+ head -n 100 Output/$*.exe-llc-beta >> $@; \
echo "TEST-PASS: llc-beta $(RELDIR)/$*" >> $@;\
printf "TEST-RESULT-llc-beta: " >> $@;\
grep "Total Execution Time" Output/$*.llc-beta.s.info | tail -n 1 >> $@;\
@@ -93,7 +93,7 @@
Output/%.nightly.opt-beta.report.txt: Output/%.exe-opt-beta
@echo > $@
@-if test -f Output/$*.exe-opt-beta; then \
- head -n 100 Output/$*.exe-opt-beta >> $@ \
+ head -n 100 Output/$*.exe-opt-beta >> $@; \
echo "TEST-PASS: opt-beta $(RELDIR)/$*" >> $@;\
printf "TEST-RESULT-opt-beta: " >> $@;\
grep "Total Execution Time" Output/$*.opt-beta.s.info | tail -n 1 >> $@;\
@@ -109,7 +109,7 @@
Output/%.nightly.cbe.report.txt: Output/%.exe-cbe
@echo > $@
@-if test -f Output/$*.exe-cbe; then \
- head -n 100 Output/$*.exe-cbe >> $@ \
+ head -n 100 Output/$*.exe-cbe >> $@; \
echo "TEST-PASS: cbe $(RELDIR)/$*" >> $@;\
printf "TEST-RESULT-cbe-time: " >> $@;\
grep "^program" Output/$*.out-cbe.time >> $@;\
@@ -123,7 +123,7 @@
Output/%.nightly.jit.report.txt: Output/%.exe-jit
@echo > $@
@-if test -f Output/$*.exe-jit; then \
- head -n 100 Output/$*.exe-jit >> $@ \
+ head -n 100 Output/$*.exe-jit >> $@; \
echo "TEST-PASS: jit $(RELDIR)/$*" >> $@;\
printf "TEST-RESULT-jit-time: " >> $@;\
grep "^program" Output/$*.out-jit.time >> $@;\
More information about the llvm-commits
mailing list