Start testing SPEC as well as singlesource/multisource
[oota-llvm.git] / utils / NightlyTest.gnuplot
1 set terminal png
2
3 ##------- Plot small Date vs LOC ----
4 set output "running_loc.png"
5 set xlabel "Date" "TimesRoman,24"
6 set ylabel "Lines of Code" "TimesRoman,24"
7 set xdata time
8 set timefmt "%Y-%m-%d:"
9 set format x "%b %d, %Y"
10
11 ## Various labels for the graph
12 set label "Reoptimizer checkins" at "2003-02-18:", 114000
13 set label "Modulo Sched checkin" at "2003-03-28:", 119500
14 set label "Reoptimizer checkins" at "2003-06-01:", 134000
15 set label "'dummy'\nfunction" at "2003-07-20:", 150000
16
17 set size .75,.75
18 plot "running_loc.txt" using 1:2 title '', \
19      "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
20
21 ##------- Plot large Date vs LOC ----
22 set size 1.5,1.5
23 set output "running_loc_large.png"
24 plot "running_loc.txt" using 1:2 title '', \
25      "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines
26
27
28 # Delete all labels...
29 set nolabel
30
31