pic2plot.test 172 B

123456789101112
  1. #!/bin/sh
  2. ../pic2plot/pic2plot -O \
  3. <$SRCDIR/sample.pic >pic2plot.out
  4. if cmp -s $SRCDIR/pic2plot.xout pic2plot.out
  5. then retval=0;
  6. else retval=1;
  7. fi;
  8. exit $retval