File: test_V3_output.sh.cmake

package info (click to toggle)
pftools 3.2.12-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 92,208 kB
  • sloc: ansic: 17,779; fortran: 12,000; perl: 2,956; sh: 232; makefile: 26; f90: 3
file content (18 lines) | stat: -rwxr-xr-x 597 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh -e

#----------------------------------------------------------------------#
# PATHS declaration (set by cmake/make: do not modify them here)
#----------------------------------------------------------------------#
TMPDIR=/tmp/test_V3
mkdir -p $TMPDIR

#----------------------------------------------------------------------#
# This script verify the correctness of the output of test_V3.sh
#----------------------------------------------------------------------#

sh -ve ./test_V3.sh  > $TMPDIR/test_V3.out 2>/dev/null
diff ./test_V3.out $TMPDIR/test_V3.out

# Cleaning
rm -Rf $TMPDIR