-
Notifications
You must be signed in to change notification settings - Fork 16
/
run_test.sh
executable file
·278 lines (255 loc) · 8.85 KB
/
run_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
#!/bin/bash
#set -x
#
# MIPS
#
echo ""
echo " MIPS: examples"
MIPS_TEST="002 003 004 005 006 007 008 011 012"
for I in $MIPS_TEST;
do
echo -n " * ./test/mips/correct/examples/test_mips_example_$I..."
./creator.sh -a ./architecture/MIPS_32.json \
-s ./test/mips/correct/examples/test_mips_example_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/mips/correct/examples/test_mips_example_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " MIPS: libraries"
MIPS_TEST="001"
for I in $MIPS_TEST;
do
echo -n " * ./test/mips/correct/libraries/test_mips_libraries_$I..."
./creator.sh -a ./architecture/MIPS_32.json \
-l ./test/mips/correct/libraries/test_mips_libraries_"$I".o \
-s ./test/mips/correct/libraries/test_mips_libraries_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/mips/correct/libraries/test_mips_libraries_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " MIPS: syscalls"
MIPS_TEST="001 002 003 004 009 010 011"
for I in $MIPS_TEST;
do
echo -n " * ./test/mips/correct/syscalls/test_mips_syscall_$I..."
./creator.sh -a ./architecture/MIPS_32.json \
-s ./test/mips/correct/syscalls/test_mips_syscall_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/mips/correct/syscalls/test_mips_syscall_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " MIPS: compile common errors"
MIPS_TEST="001 002 003 004 005 006 007 008 009 014 015 016 017 018 019 021 022 023 030"
for I in $MIPS_TEST;
do
echo -n " * ./test/mips/error/compiler/test_mips_error_compiler_$I: "
./creator.sh -a ./architecture/MIPS_32.json \
-s ./test/mips/error/compiler/test_mips_error_compiler_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/mips/error/compiler/test_mips_error_compiler_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " MIPS: execution common errors"
MIPS_TEST="001 002 003 004 005 006 007 008 009"
for I in $MIPS_TEST;
do
echo -n " * ./test/mips/error/executor/test_mips_error_executor_$I: "
./creator.sh -a ./architecture/MIPS_32.json \
-s ./test/mips/error/executor/test_mips_error_executor_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/mips/error/executor/test_mips_error_executor_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " MIPS: passing convention"
MIPS_TEST="001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035"
for I in $MIPS_TEST;
do
echo -n " * ./test/mips/sentinel/test_mips_sentinels_$I: "
./creator.sh -a ./architecture/MIPS_32.json \
-s ./test/mips/sentinel/test_mips_sentinels_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/mips/sentinel/test_mips_sentinels_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " MIPS: instructions"
MIPS_TEST="001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067"
for I in $MIPS_TEST;
do
echo -n " * ./test/mips/instructions/test_mips_instruction_$I: "
./creator.sh -a ./architecture/MIPS_32.json \
-s ./test/mips/instructions/test_mips_instruction_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/mips/instructions/test_mips_instruction_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
#
# RISC-V
#
echo ""
echo " RISC-V examples:"
RV_TEST="002 003 004 005 006 007 008 011 012"
for I in $RV_TEST;
do
echo -n " * ./test/riscv/correct/examples/test_riscv_example_$I: "
./creator.sh -a ./architecture/RISC_V_RV32IMFD.json \
-s ./test/riscv/correct/examples/test_riscv_example_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/riscv/correct/examples/test_riscv_example_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " RISC-V libraries:"
RV_TEST="001"
for I in $RV_TEST;
do
echo -n " * ./test/riscv/correct/libraries/test_riscv_libraries_$I: "
./creator.sh -a ./architecture/RISC_V_RV32IMFD.json \
-l ./test/riscv/correct/libraries/test_riscv_libraries_"$I".o \
-s ./test/riscv/correct/libraries/test_riscv_libraries_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/riscv/correct/libraries/test_riscv_libraries_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " RISC-V syscalls:"
RV_TEST="001 002 003 004 009 010 011"
for I in $RV_TEST;
do
echo -n " * ./test/riscv/correct/syscalls/test_riscv_syscall_$I: "
./creator.sh -a ./architecture/RISC_V_RV32IMFD.json \
-s ./test/riscv/correct/syscalls/test_riscv_syscall_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/riscv/correct/syscalls/test_riscv_syscall_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " RISC-V: compile common errors"
RV_TEST="001 002 003 004 005 006 007 008 009 014 015 016 017 018 019 021 022 023 030"
for I in $RV_TEST;
do
echo -n " * ./test/riscv/error/compiler/test_riscv_error_compiler_$I: "
./creator.sh -a ./architecture/RISC_V_RV32IMFD.json \
-s ./test/riscv/error/compiler/test_riscv_error_compiler_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/riscv/error/compiler/test_riscv_error_compiler_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " RISC-V: execution common errors"
RV_TEST="001 002 003 004 005 006 007 008 009"
for I in $RV_TEST;
do
echo -n " * ./test/riscv/error/executor/test_riscv_error_executor_$I: "
./creator.sh -a ./architecture/RISC_V_RV32IMFD.json \
-s ./test/riscv/error/executor/test_riscv_error_executor_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/riscv/error/executor/test_riscv_error_executor_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " RISC-V: passing convention"
RV_TEST="001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036"
for I in $RV_TEST;
do
echo -n " * ./test/riscv/sentinel/test_riscv_sentinels_$I: "
./creator.sh -a ./architecture/RISC_V_RV32IMFD.json \
-s ./test/riscv/sentinel/test_riscv_sentinels_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/riscv/sentinel/test_riscv_sentinels_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
echo ""
echo " RISC-V: instructions"
RV_TEST="001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065"
for I in $RV_TEST;
do
echo -n " * ./test/riscv/instructions/test_riscv_instruction_$I: "
./creator.sh -a ./architecture/RISC_V_RV32IMFD.json \
-s ./test/riscv/instructions/test_riscv_instruction_"$I".s -o min > /tmp/e-"$I".out
diff /tmp/e-"$I".out ./test/riscv/instructions/test_riscv_instruction_"$I".out
if [ $? -ne 0 ]; then
echo "Different: Error $I with different outputs...";
error=1
else
echo "Equals";
fi
rm /tmp/e-"$I".out
done
#
# Return
#
if [[ -n "$error" ]]; then
echo "Error(s) found."
exit -1
fi