File: eqrect_test

package info (click to toggle)
libgctp 2.0.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,776 kB
  • sloc: ansic: 7,922; sh: 4,387; makefile: 88; fortran: 29
file content (11 lines) | stat: -rwxr-xr-x 474 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

./testproj $DATADIR/eqrect/data17 < $DATADIR/eqrect/parm17 > testfile_eqrect
./testproj $DATADIR/eqrect/data17a < $DATADIR/eqrect/parm17a >> testfile_eqrect
./testproj $DATADIR/eqrect/data17b < $DATADIR/eqrect/parm17b >> testfile_eqrect
./testproj $DATADIR/eqrect/data17c < $DATADIR/eqrect/parm17c >> testfile_eqrect
./testproj $DATADIR/eqrect/data17d < $DATADIR/eqrect/parm17d >> testfile_eqrect

grep -qi "Differences exist" testfile_eqrect && exit 1

exit 0