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

./testproj $DATADIR/stereo/data10 < $DATADIR/stereo/parm10 > testfile_stereo
./testproj $DATADIR/stereo/data10a < $DATADIR/stereo/parm10a >> testfile_stereo
./testproj $DATADIR/stereo/data10b < $DATADIR/stereo/parm10b >> testfile_stereo

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

exit 0