From: Michal Sojka Date: Fri, 17 Dec 2010 15:00:38 +0000 (+0100) Subject: Do not generate PDFs with older version of gnuplot X-Git-Tag: fix-allnoconfig~206 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/commitdiff_plain/d61cff12fbff70feeadb7b4d84c89f9818436d56 Do not generate PDFs with older version of gnuplot That version does not implement pdfcairo terminal. --- diff --git a/gw-tests/lib.sh b/gw-tests/lib.sh index 5afc021..8cf99e9 100644 --- a/gw-tests/lib.sh +++ b/gw-tests/lib.sh @@ -55,13 +55,13 @@ _plot() { if [ -z "$OPT_NO_X11" ]; then echo "set terminal x11 enhanced; $(< plot.gp)" | gnuplot -persist fi + test "$(gnuplot --version)" = "gnuplot 4.2 patchlevel 5 " && continue echo "set terminal pdfcairo solid color enhanced; " \ "set output \"graph$i.pdf\";" \ "set pointsize 0.5;" \ "$(< plot.gp)" | gnuplot echo 'set terminal pngcairo color enhanced size 750,525 font ",10" ;' \ "$(< plot.gp)" | gnuplot > graph$i.png - mkdir -p thumb convert -resize 150x105 -gamma 0.5 -quality 90 -type Palette -depth 8 graph$i.png tgraph$i.png # echo 'set terminal pngcairo color enhanced size 150,105 font ",1";' \ # "$(< plot.gp)" | gnuplot > thumb/${testname}$i.png