-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTest4_developMistakeBug.sh
executable file
·207 lines (166 loc) · 12 KB
/
Test4_developMistakeBug.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
bold=$(tput bold)
normal=$(tput sgr0)
echo "${bold}Testing Buggy Implementation due to Developer Mitake.${normal}"
echo "${bold}40 benchmarks total.${normal}"
echo "${bold}Total Expected Required Time: ~25 minutes.${normal}"
echo ""
echo "${bold}Developer Mistake #1${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm1 --p2lang asm
echo ""
echo "${bold}Developer Mistake #2${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm2 --p2lang asm
echo ""
echo "${bold}Developer Mistake #3${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm3 --p2lang asm
echo ""
echo "${bold}Developer Mistake #4${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm4 --p2lang asm
echo ""
echo "${bold}Developer Mistake #5${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm5 --p2lang asm
echo ""
echo "${bold}Developer Mistake #6${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm6 --p2lang asm
echo ""
echo "${bold}Developer Mistake #7${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm7 --p2lang asm
echo ""
echo "${bold}Developer Mistake #8${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm8 --p2lang asm
echo ""
echo "${bold}Developer Mistake #9${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm9 --p2lang asm
echo ""
echo "${bold}Developer Mistake #10${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/swappedOperand/asm10 --p2lang asm
echo ""
echo "${bold}Developer Mistake #11${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm1 --p2lang asm
echo ""
echo "${bold}Developer Mistake #12${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm2 --p2lang asm
echo ""
echo "${bold}Developer Mistake #13${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm3 --p2lang asm
echo ""
echo "${bold}Developer Mistake #14${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm4 --p2lang asm
echo ""
echo "${bold}Developer Mistake #15${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm5 --p2lang asm
echo ""
echo "${bold}Developer Mistake #16${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm6 --p2lang asm
echo ""
echo "${bold}Developer Mistake #17${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm7 --p2lang asm
echo ""
echo "${bold}Developer Mistake #18${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm8 --p2lang asm
echo ""
echo "${bold}Developer Mistake #19${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm9 --p2lang asm
echo ""
echo "${bold}Developer Mistake #20${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongAddr/asm10 --p2lang asm
echo ""
echo "${bold}Developer Mistake #21${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm1 --p2lang asm
echo ""
echo "${bold}Developer Mistake #22${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm2 --p2lang asm
echo ""
echo "${bold}Developer Mistake #23${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm3 --p2lang asm
echo ""
echo "${bold}Developer Mistake #24${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm4 --p2lang asm
echo ""
echo "${bold}Developer Mistake #25${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm5 --p2lang asm
echo ""
echo "${bold}Developer Mistake #26${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm6 --p2lang asm
echo ""
echo "${bold}Developer Mistake #27${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm7 --p2lang asm
echo ""
echo "${bold}Developer Mistake #28${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm8 --p2lang asm
echo ""
echo "${bold}Developer Mistake #29${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm9 --p2lang asm
echo ""
echo "${bold}Developer Mistake #30${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongInst/asm10 --p2lang asm
echo ""
echo "${bold}Developer Mistake #31${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm1 --p2lang asm
echo ""
echo "${bold}Developer Mistake #32${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm2 --p2lang asm
echo ""
echo "${bold}Developer Mistake #33${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm3 --p2lang asm
echo ""
echo "${bold}Developer Mistake #34${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm4 --p2lang asm
echo ""
echo "${bold}Developer Mistake #35${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm5 --p2lang asm
echo ""
echo "${bold}Developer Mistake #36${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm6 --p2lang asm
echo ""
echo "${bold}Developer Mistake #37${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm7 --p2lang asm
echo ""
echo "${bold}Developer Mistake #38${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm8 --p2lang asm
echo ""
echo "${bold}Developer Mistake #39${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm9 --p2lang asm
echo ""
echo "${bold}Developer Mistake #40${normal}"
echo "${bold}Expected result: p1 is not equivalent to p2 (Reason: Concrete Execution)${normal}"
python3 main.py --pre test/ChaCha20/pre --post test/ChaCha20/post --p1 test/ChaCha20/dsl --p1lang dsl --p2 test/ChaCha20/wrongOperand/asm10 --p2lang asm
echo ""