File: tm_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/tm/data9 < $DATADIR/tm/parm9 > testfile_tm
./testproj $DATADIR/tm/data9a < $DATADIR/tm/parm9a >> testfile_tm
./testproj $DATADIR/tm/data9b < $DATADIR/tm/parm9b >> testfile_tm
./testproj $DATADIR/tm/data9c < $DATADIR/tm/parm9c >> testfile_tm
./testproj $DATADIR/tm/data9d < $DATADIR/tm/parm9d >> testfile_tm
./testproj $DATADIR/tm/data9e < $DATADIR/tm/parm9e >> testfile_tm

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

exit 0