summaryrefslogtreecommitdiffstats
path: root/llvm/utils/NightlyTest.gnuplot
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-18 20:07:54 +0000
committerChris Lattner <sabre@nondot.org>2003-08-18 20:07:54 +0000
commit3c81d9ac54fbc6a6c59c0d451190b9f43a4f41ee (patch)
tree3025b68e315c2d414f83f4bf84b7ac001bc4c599 /llvm/utils/NightlyTest.gnuplot
parentb3b70f982ecfe79552409977f7e0c952bd9d0c86 (diff)
downloadbcm5719-llvm-3c81d9ac54fbc6a6c59c0d451190b9f43a4f41ee.tar.gz
bcm5719-llvm-3c81d9ac54fbc6a6c59c0d451190b9f43a4f41ee.zip
Add the magic incantations to get a running LOC graph updated each night...
llvm-svn: 7957
Diffstat (limited to 'llvm/utils/NightlyTest.gnuplot')
-rw-r--r--llvm/utils/NightlyTest.gnuplot28
1 files changed, 28 insertions, 0 deletions
diff --git a/llvm/utils/NightlyTest.gnuplot b/llvm/utils/NightlyTest.gnuplot
new file mode 100644
index 00000000000..b3f40e33517
--- /dev/null
+++ b/llvm/utils/NightlyTest.gnuplot
@@ -0,0 +1,28 @@
+set terminal png
+
+##------- Plot small Date vs LOC ----
+set output "running_loc.png"
+set xlabel "Date" "TimesRoman,24"
+set ylabel "Lines of Code" "TimesRoman,24"
+set xdata time
+set timefmt "%Y-%m-%d:"
+set format x "%b %m, %Y"
+
+## Various labels for the graph
+set label "Removed\ndummy\nfunction" at "2003-07-30:", 150000
+
+set size .5,.5
+plot "running_loc.txt" using 1:2 title '', \
+ "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
+
+##------- Plot large Date vs LOC ----
+set size 1.5,1.5
+set output "running_loc_large.png"
+plot "running_loc.txt" using 1:2 title '', \
+ "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
+
+
+# Delete all labels...
+set nolabel
+
+
OpenPOWER on IntegriCloud