File: ps_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 (12 lines) | stat: -rwxr-xr-x 466 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

./testproj $DATADIR/ps/data6 < $DATADIR/ps/parm6 > testfile_ps
./testproj $DATADIR/ps/data6a < $DATADIR/ps/parm6a >> testfile_ps
./testproj $DATADIR/ps/data6b < $DATADIR/ps/parm6b >> testfile_ps
./testproj $DATADIR/ps/data6c < $DATADIR/ps/parm6c >> testfile_ps
./testproj $DATADIR/ps/data6d < $DATADIR/ps/parm6d >> testfile_ps
./testproj $DATADIR/ps/data6e < $DATADIR/ps/parm6e >> testfile_ps

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

exit 0