-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.sh
299 lines (255 loc) · 5.92 KB
/
test.sh
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#!/bin/bash
shopt -s nullglob
# script de test pour le projet de compilation
option=$1
compilo=$2
score=0
max=0
verbose=0
echo "Test de $2"
echo
compile () {
if [[ $verbose != 0 ]]; then
echo Compile $1 $2
$compilo $1 $2;
else
$compilo $1 $2 > /dev/null 2>&1;
fi;
}
##############################################################################
# partie 1 : tests d'analyse syntaxique
##############################################################################
partie1 () {
score=0
max=0
echo "Partie 1"
# les mauvais
echo -n "mauvais "
for f in test/syntax/bad/*.jl; do
echo -n ".";
max=`expr $max + 1`;
compile --parse-only $f;
case $? in
"0")
echo
echo "ECHEC sur "$f" (devrait échouer)";;
"1") score=`expr $score + 1`;;
*)
echo
echo "ECHEC sur "$f" (pour une mauvaise raison)";;
esac
done
echo
# les bons
echo -n "bons "
for f in test/syntax/good/*.jl test/typing/bad/*.jl test/typing/good/*.jl test/exec/*.jl test/exec-fail/*.jl; do
echo -n ".";
max=`expr $max + 1`;
compile --parse-only $f;
case $? in
"1")
echo
echo "ECHEC sur "$f" (devrait reussir)";;
"0") score=`expr $score + 1`;;
*)
echo
echo "ECHEC sur "$f" (pour une mauvaise raison)";;
esac
done
echo
percent=`expr 100 \* $score / $max`;
echo -n "Partie 1: $score/$max : $percent%"; }
##############################################################################
# partie 2 : tests d'analyse sémantique
##############################################################################
partie2 () {
echo
echo "Partie 2"
score=0
max=0
# les mauvais
echo -n "mauvais "
for f in test/typing/bad/*.jl; do
echo -n ".";
max=`expr $max + 1`;
compile --type-only $f;
case $? in
"0")
echo
echo "ECHEC sur "$f" (devrait échouer)";;
"1") score=`expr $score + 1`;;
*)
echo
echo "ECHEC sur "$f" (pour une mauvaise raison)";;
esac
done
echo
# les bons
echo -n "bons "
for f in test/typing/good/*.jl test/exec/*.jl test/exec-fail/*.jl; do
echo -n ".";
max=`expr $max + 1`;
compile --type-only $f;
case $? in
"1")
echo
echo "ECHEC sur "$f" (devrait reussir)";;
"0") score=`expr $score + 1`;;
*)
echo
echo "ECHEC sur "$f" (pour une mauvaise raison)";;
esac
done
echo
percent=`expr 100 \* $score / $max`;
echo "Partie 2: $score/$max : $percent%";
}
##############################################################################
# partie 3 : tests d'exécution
##############################################################################
partie3 () {
score_comp=0
score_out=0
score_test=0
max=0
echo
echo "Partie 3"
echo "Execution normale"
echo "-----------------"
timeout="why3-cpulimit 30 0 -h"
for f in test/exec/*.jl; do
echo -n "."
asm=test/exec/`basename $f .jl`.s
rm -f $asm
expected=test/exec/`basename $f .jl`.out
max=`expr $max + 1`;
if compile $f; then
rm -f out
score_comp=`expr $score_comp + 1`;
if gcc -no-pie $asm && ./a.out > out; then
score_out=`expr $score_out + 1`;
if cmp --quiet out $expected; then
score_test=`expr $score_test + 1`;
else
echo
echo "ECHEC : mauvaise sortie pour $f"
fi
else
echo
echo "ECHEC du code produit pour $f"
fi
else
echo
echo "ECHEC de la compilation sur $f (devrait réussir)"
fi
done
echo
echo "Execution conduisant à un échec"
echo "-------------------------------"
for f in test/exec-fail/*.jl; do
echo -n "."
asm=test/exec-fail/`basename $f .jl`.s
rm -f $asm
max=`expr $max + 1`;
if compile $f && gcc -no-pie $asm; then
score_comp=`expr $score_comp + 1`;
if ./a.out > out; then
echo
echo "ECHEC : devrait échouer sur $f"
else
score_test=`expr $score_test + 1`;
score_out=`expr $score_out + 1`;
fi
else
echo
echo "ECHEC de la compilation sur $f (devrait réussir)"
fi
done
echo
percent=`expr 100 \* $score / $max`;
echo "Partie 3:";
percent=`expr 100 \* $score_comp / $max`;
echo "Compilation : $score_comp/$max : $percent%";
percent=`expr 100 \* $score_out / $max`;
echo "Code produit : $score_out/$max : $percent%";
percent=`expr 100 \* $score_test / $max`;
echo "Comportement du code : $score_test/$max : $percent%";}
##############################################################################
interp () {
score_test=0
max=0
echo
echo "Interprète"
echo "Execution normale"
echo "-----------------"
timeout="why3-cpulimit 30 0 -h"
for f in test/exec/*.jl; do
echo -n "."
expected=test/exec/`basename $f .jl`.out
max=`expr $max + 1`;
rm -f out
if $compilo $f > out; then
if cmp --quiet out $expected; then
score_test=`expr $score_test + 1`;
else
echo
echo "ECHEC : mauvaise sortie pour $f"
fi
else
echo
echo "ECHEC de l'interprétation sur $f"
fi
done
echo
echo "Execution conduisant à un échec"
echo "-------------------------------"
for f in test/exec-fail/*.jl; do
echo -n "."
max=`expr $max + 1`;
if $compilo $f > /dev/null 2>&1; then
echo
echo "ECHEC : le code $f devrait échouer"
else
score_test=`expr $score_test + 1`;
fi
done
echo
percent=`expr 100 \* $score / $max`;
echo "Interprète:";
percent=`expr 100 \* $score_test / $max`;
echo "Comportement du code : $score_test/$max : $percent%";}
case $option in
"-1" )
partie1;;
"-2" )
partie2;;
"-3" )
partie3;;
"-v1" )
verbose=1;
partie1;;
"-v2" )
verbose=1;
partie2;;
"-v3" )
verbose=1;
partie3;;
"-all" )
partie1;
partie2;
partie3;;
"-i" )
interp;;
* )
echo "usage : $0 <option> <compilo>"
echo "spécifier une option parmi : "
echo "-1 : tester la partie 1"
echo "-2 : tester la partie 2"
echo "-3 : tester la partie 3"
echo "-i : tester avec un interprète"
echo "-v1 : tester la partie 1 (verbose)"
echo "-v2 : tester la partie 2 (verbose)"
echo "-v3 : tester la partie 3 (verbose)"
echo "-all : tout tester";;
esac
echo