File: RunTest.sh

package info (click to toggle)
cpptraj 5.1.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 138,900 kB
  • sloc: cpp: 145,621; ansic: 34,635; sh: 11,365; f90: 971; makefile: 770; awk: 242
file content (19 lines) | stat: -rwxr-xr-x 356 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

. ../MasterTest.sh

CleanFiles curve.in curve.dat int.dat

INPUT="-i curve.in"

cat > curve.in <<EOF
readdata ../Test_Corr/corr.dat.save name Corr
integrate Corr out curve.dat name Int_Corr intout int.dat
datafile int.dat prec 16.8
EOF
RunCpptraj "Integration test."
DoTest curve.dat.save curve.dat
DoTest int.dat.save int.dat

EndTest
exit 0