-
Notifications
You must be signed in to change notification settings - Fork 13
/
testall.sh
executable file
·201 lines (170 loc) · 4.35 KB
/
testall.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
#!/bin/bash
# authors: MicroC testall.sh modified by Crystal Ren
# Regression testing script for Shoo
# Step through a list of files
# Compile, run, and check the output of each expected-to-work test
# Compile and check the error of each expected-to-fail test
# reference: Edwards' MicroC testall.sh
# Path to the LLVM interpreter
LLI="lli"
#LLI="/usr/local/opt/llvm/bin/lli"
# Path to the LLVM compiler
LLC="llc"
# Path to the C compiler
CC="cc"
# Path to the shoo compiler. Usually "./shoo.native"
# Try "_build/shoo.native" if ocamlbuild was unable to create a symbolic link.
SHOO="./shoo.native"
#SHOO="_build/shoo.native"
# Set time limit for all operations
ulimit -t 30
globallog=testall.log
rm -f $globallog
error=0
globalerror=0
passed=0
total=0
keep=0
Usage() {
echo "Usage: testall.sh [options] [.shoo files]"
echo "-k Keep intermediate files"
echo "-h Print this help"
exit 1
}
SignalError() {
if [ $error -eq 0 ] ; then
error=1
fi
}
# Compare <outfile> <reffile> <difffile>
# Compares the outfile with reffile. Differences, if any, written to difffile
Compare() {
generatedfiles="$generatedfiles $3"
echo diff -b $1 $2 ">" $3 1>&2
diff -b "$1" "$2" > "$3" 2>&1 || {
SignalError "$1 differs"
echo "FAILED $1 differs from $2" 1>&2
}
}
# Run <args>
# Report the command, run it, and report any errors
Run() {
echo $* 1>&2
eval $* || {
SignalError "$1 failed on $*"
return 1
}
}
# RunFail <args>
# Report the command, run it, and expect an error
RunFail() {
echo $* 1>&2
eval $* && {
SignalError "failed: $* did not report an error"
return 1
}
return 0
}
Check() {
error=0
basename=`echo $1 | sed 's/.*\\///
s/.shoo//'`
reffile=`echo $1 | sed 's/.shoo$//'`
basedir="`echo $1 | sed 's/\/[^\/]*$//'`/."
echo 1>&2
echo "###### Testing $basename" 1>&2
generatedfiles=""
generatedfiles="$generatedfiles ${basename}.ll ${basename}.s ${basename}.exe ${basename}.out" &&
Run "$SHOO" "$1" ">" "${basename}.ll" &&
Run "$LLC" "-relocation-model=pic" "${basename}.ll" ">" "${basename}.s" &&
Run "$CC" "-o" "${basename}.exe" "${basename}.s" "builtins.o" "-lm" &&
Run "./${basename}.exe" > "${basename}.out" &&
Compare ${basename}.out ${reffile}.out ${basename}.diff
# Report the status and clean up the generated files
#echo "before error check"
total=$((total+1))
if [ $error -eq 0 ] ; then
if [ $keep -eq 0 ] ; then
rm -f $generatedfiles
fi
echo -n "."
echo "###### SUCCESS" 1>&2
passed=$((passed+1))
else
printf "\n"
echo -n "$basename..."
echo "failed"
echo "###### FAILED" 1>&2
globalerror=$error
fi
}
CheckFail() {
error=0
basename=`echo $1 | sed 's/.*\\///
s/.shoo//'`
reffile=`echo $1 | sed 's/.shoo$//'`
basedir="`echo $1 | sed 's/\/[^\/]*$//'`/."
echo 1>&2
echo "###### Testing $basename" 1>&2
generatedfiles=""
generatedfiles="$generatedfiles ${basename}.err ${basename}.diff" &&
RunFail "$SHOO" "<" $1 "2>" "${basename}.err" ">>" $globallog &&
Compare ${basename}.err ${reffile}.err ${basename}.diff
# Report the status and clean up the generated files
total=$((total+1))
if [ $error -eq 0 ] ; then
if [ $keep -eq 0 ] ; then
rm -f $generatedfiles
fi
echo -n "."
echo "###### SUCCESS" 1>&2
passed=$((passed+1))
else
printf "\n"
echo -n "$basename..."
echo "failed"
echo "###### FAILED" 1>&2
globalerror=$error
fi
}
while getopts kdpsh c; do
case $c in
k) # Keep intermediate files
keep=1
;;
h) # Help
Usage
;;
esac
done
shift `expr $OPTIND - 1`
LLIFail() {
echo "Could not find the LLVM interpreter \"$LLI\"."
echo "Check your LLVM installation and/or modify the LLI variable in testall.sh"
exit 1
}
which "$LLI" >> $globallog || LLIFail
if [ $# -ge 1 ]
then
files=$@
else
files="test/test-*.shoo test/fail-*.shoo"
fi
for file in $files
do
case $file in
*test-*)
Check $file 2>> $globallog
;;
*fail-*)
CheckFail $file 2>> $globallog
;;
*)
echo "unknown file type $file"
globalerror=1
;;
esac
done
printf "\n"
echo $passed" out of "$total" tests passed!"
exit $globalerror