blob: 6edfb820c583e3b16ef623c0c682e95a785d6196 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
#!/bin/sh
# set -x
PLATFORM=`uname`
VERBOSE=0
OPROG=fundisp
NPROG=../fundisp
STDIN=/dev/null
OFILE=${HOME}/data/snr.ev
NFILE=${HOME}/data/snr.ev.gz
X=504
Y=512
if [ -r /usr/ucb/echo ]; then
ECHO=/usr/ucb/echo
else
ECHO=echo
fi
while [ x"$1" != x ]; do
case $1 in
-1)
DO1=YES
shift
continue;;
-b)
shift
B="$1("
B2=")"
shift
continue;;
-c)
shift
C="$1\;"
shift
continue;;
-e)
OM="field;-"
NM="-"
shift
continue;;
-f2)
shift
OFILE=$1
shift
NFILE=$1
shift
continue;;
-i)
DOINC=YES
shift
continue;;
-n)
shift
NPROG=$1
shift
continue;;
-o)
shift
OPROG=$1
shift
continue;;
-p)
shift
STDIN=$1
if [ x`$ECHO $STDIN | awk -F. '{print $NF}'` = x"gz" ]; then
NFILE=stdin.gz
else
NFILE=stdin
fi
shift
continue;;
-P)
DO1=YES
NPROG=../fundisp.pure
shift
continue;;
-V)
DO1=YES
NPROG="/usr/bin/valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --trace-children=yes ../fundisp"
shift
continue;;
-v)
VERBOSE=1
shift
continue;;
-v2)
VERBOSE=2
shift
continue;;
-x)
shift
X=$1
shift
continue;;
-y)
shift
Y=$1
shift
continue;;
-z)
ZBUG=true
shift
continue;;
*)
shift
continue;;
esac
done
X2=`$ECHO "$X + 10" | bc`
Y2=`$ECHO "$Y + 10" | bc`
X3=`$ECHO "$X + 20" | bc`
Y3=$Y
X4=`$ECHO "$X + 10" | bc`
Y4=`$ECHO "$Y - 10" | bc`
$ECHO "OPROG="${OPROG} "FILE="${OFILE}
$ECHO "NPROG="${NPROG} "FILE="${NFILE}
IFS=" "
while read ARG1 ARG2 ARG3; do
if [ x"$ARG1" = x ]; then
continue
fi
if [ x`$ECHO $ARG1 | sed 's/^#.*/YES/g'` = x"YES" ]; then
continue
fi
CMD=$ARG1
eval "ARG2=\"${C}$ARG2\""
eval "ARG3=\"${C}$ARG3\""
if [ x$CMD = xZIEXACT ]; then
if [ x$FILTER_PAINT = xtrue ]; then
continue
else
CMD=EXACT
fi
fi
if [ x$CMD = xZEXACT ]; then
if [ x$FILTER_PAINT = xtrue ]; then
CMD=SUM
else
CMD=EXACT
fi
fi
case $CMD in
OPROG)
OPROG=$ARG2
$ECHO OPROG="${OPROG}"
;;
NPROG)
NPROG=$ARG2
$ECHO NPROG="${NPROG}"
;;
OFILE)
OFILE=$ARG2
$ECHO OFILE="${OFILE}"
;;
NFILE)
NFILE=$ARG2
$ECHO NFILE="${NFILE}"
;;
EXCLUDE)
OM="field;-"
NM="-"
;;
EXIT)
exit
;;
EXACT|SUM|REV)
if [ x"$DO1" = xYES ]; then
$ECHO "${M}DO1: $ARG3"
eval "cat $STDIN | $NPROG ${NFILE}\"[${NM}$ARG3]\" > fundisp2.out"
else
if [ x"$DOINC" = xYES ]; then
$ECHO "$ARG3" > arg3.inc
$ECHO "${M}EXACT: ${B}$ARG2${B2} ... ${B}@include($ARG3)${B2}"
ARG3="@arg3.inc"
else
$ECHO "${M}EXACT: ${B}$ARG2 ... ${B}$ARG3"
fi
CMP=yes
XPROG=""
$OPROG ${OFILE}"[${B}${OM}$ARG2${B2}]" > tfundisp1.out
if test $? -ne 0; then
CMP=no
XPROG="$OPROG"
fi
cat $STDIN | $NPROG ${NFILE}"[${B}${NM}$ARG3${B2}]" > tfundisp2.out
if test $? -ne 0; then
CMP=no
XPROG="${XPROG:-}${XPROG:+' '}$NPROG"
fi
if [ x"$CMP" = xyes ]; then
if [ x"$ZBUG" = xtrue ]; then
sed "/^ *$X $Y.*$/d" < tfundisp1.out > fundisp1.out
sed "/^ *$X $Y.*$/d" < tfundisp2.out > fundisp2.out
else
mv tfundisp1.out fundisp1.out
mv tfundisp2.out fundisp2.out
fi
diff fundisp1.out fundisp2.out
else
$ECHO "skipping compare due to errors in $XPROG"
fi
fi
$ECHO " "
;;
*)
$ECHO "ERROR: unknown command: $CMD"
exit 1
;;
esac
if [ $VERBOSE = 1 ]; then
$ECHO "***** fundisp1.out *****"
cat fundisp1.out
fi
if [ $VERBOSE = 2 ]; then
$ECHO "***** fundisp1.out *****"
cat fundisp1.out
$ECHO "***** fundisp2.out *****"
cat fundisp2.out
fi
rm -f err.log
done
rm -f fundisp1.out fundisp2.out tfundisp1.out tfundisp2.out
|