graph.test 449 B

12345678910111213141516171819
  1. #!/bin/sh
  2. ../graph/graph -g 2 -I a -C -m -1 -S 23 .02 --tick-size -.015 \
  3. -f .06 --title-font-size 0.09 \
  4. --title-font-name Times-Roman --font-name HersheyGothic-English \
  5. -L 'A Sample Plot' \
  6. -X 'independent (x\sb1\eb) variable' \
  7. -Y 'dependent (x\sb2\eb) variable' \
  8. -u .25 -r .25 -w .5 -h .5 \
  9. --portable-output \
  10. <$SRCDIR/spline.xout >graph.out
  11. if cmp -s $SRCDIR/graph.xout graph.out
  12. then retval=0;
  13. else retval=1;
  14. fi;
  15. exit $retval