plot2fig.test 162 B

1234567891011
  1. #!/bin/sh
  2. ../plot/plot -T fig <$SRCDIR/graph.xout >plot2fig.out
  3. if cmp -s $SRCDIR/plot2fig.xout plot2fig.out
  4. then retval=0;
  5. else retval=1;
  6. fi;
  7. exit $retval