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

John Criswell criswell at cs.uiuc.edu
Mon Nov 8 17:24:10 PST 2004



Changes in directory llvm-test:

Makefile.programs updated: 1.140 -> 1.141
---
Log message:

Added support for generating CSV files.  This should allow us to easily
load results into spreadsheets.


---
Diffs of the changes:  (+6 -1)

Index: llvm-test/Makefile.programs
diff -u llvm-test/Makefile.programs:1.140 llvm-test/Makefile.programs:1.141
--- llvm-test/Makefile.programs:1.140	Sat Nov  6 14:40:57 2004
+++ llvm-test/Makefile.programs	Mon Nov  8 19:23:52 2004
@@ -572,6 +572,9 @@
 report.$(TEST).tex: report.$(TEST).raw.out $(TestReport) $(GENERATEREPORT)
 	$(GENERATEREPORT) -latex $(TestReport) < $< > $@
 
+report.$(TEST).csv: report.$(TEST).raw.out $(TestReport) $(GENERATEREPORT)
+	$(GENERATEREPORT) -csv $(TestReport) < $< > $@
+
 report.graphs: report.$(TEST).raw.out $(TestReport) $(TestGnuPlot) $(GENERATEREPORT)
 	$(GENERATEREPORT) -graphs $(TestReport) < $<
 	gnuplot $(TestGnuPlot)
@@ -581,9 +584,11 @@
 
 report.html: report.$(TEST).html
 
+report.csv: report.$(TEST).csv
+
 report.tex: report.$(TEST).tex
 	@cat $<
 endif
 
 clean::
-	rm -f report.*.raw.out report.*.txt report.*.html report.*.tex
+	rm -f report.*.raw.out report.*.txt report.*.html report.*.tex report.*.csv






More information about the llvm-commits mailing list