Add more test code.
[yaffs2.git] / linux-tests / drive_gnuplot.sh
1 #!/bin/sh
2 # drive_gnuplot syntehsises the commands for driving gnuplot
3
4 the_log_file=data
5
6 plot_str=" plot 'trunc_data' using 1:3 with linespoints title 'free', '' using 1:4 with linespoints title 'erased'"
7
8 echo "set title 'yaffs free space and erased space'"
9
10 echo $plot_str
11  
12 while true; do
13 sleep 1
14 tail -500 $the_log_file > trunc_data
15 echo replot
16 done
17