[llvm-commits] CVS: poolalloc/test/TEST.perf.Makefile

John Criswell criswell at cs.uiuc.edu
Thu Mar 4 12:48:01 PST 2004


Changes in directory poolalloc/test:

TEST.perf.Makefile updated: 1.2 -> 1.3

---
Log message:

Make the output a little nicer and funnel all of the stats to the
report.txt file.



---
Diffs of the changes:  (+5 -5)

Index: poolalloc/test/TEST.perf.Makefile
diff -u poolalloc/test/TEST.perf.Makefile:1.2 poolalloc/test/TEST.perf.Makefile:1.3
--- poolalloc/test/TEST.perf.Makefile:1.2	Thu Mar  4 11:41:44 2004
+++ poolalloc/test/TEST.perf.Makefile	Thu Mar  4 12:47:31 2004
@@ -83,11 +83,11 @@
                      $(PROGRAMS_TO_TEST:%=Output/$(TEST).cacheaccesses.pa.%) \
                      $(PROGRAMS_TO_TEST:%=Output/$(TEST).cachemisses.%) \
                      $(PROGRAMS_TO_TEST:%=Output/$(TEST).cachemisses.pa.%)
-	@echo > $@
-	@printf "CBE-PA-Cache-Accesses: %11lld\n" `cat Output/$(TEST).cacheaccesses.pa.$*`
-	@printf "CBE-Cache-Accesses   : %11lld\n" `cat Output/$(TEST).cacheaccesses.$*`
-	@printf "CBE-PA-Cache-Misses  : %11lld\n" `cat Output/$(TEST).cachemisses.pa.$*`
-	@printf "CBE-Cache-Misses     : %11lld\n" `cat Output/$(TEST).cachemisses.$*`
+	@echo $* > $@
+	@printf "CBE-PA-Cache-Accesses: %11lld\n" `cat Output/$(TEST).cacheaccesses.pa.$*` | tee -a $@
+	@printf "CBE-Cache-Accesses   : %11lld\n" `cat Output/$(TEST).cacheaccesses.$*` | tee -a $@
+	@printf "CBE-PA-Cache-Misses  : %11lld\n" `cat Output/$(TEST).cachemisses.pa.$*` | tee -a $@
+	@printf "CBE-Cache-Misses     : %11lld\n" `cat Output/$(TEST).cachemisses.$*` | tee -a $@
 
 
 $(PROGRAMS_TO_TEST:%=test.$(TEST).%): \





More information about the llvm-commits mailing list