-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrunMutationTestingExperiments.sh
More file actions
executable file
·348 lines (205 loc) · 17.4 KB
/
runMutationTestingExperiments.sh
File metadata and controls
executable file
·348 lines (205 loc) · 17.4 KB
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
#!/bin/bash
echo -e "Running IronSpec MutationTesting Experiments \n"
# # --------------
echo -e "Starting Mutation Testing for Max Spec (Correct)"
mkdir experimentOutput/MaxSpecCorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:maxExample.maxSpec /proofName:maxTest.maxT /proofLocation:"$(pwd)/specs/max/lemmaMaxTestCorrect.dfy" /serverIpPortList:ipPorts.txt $(pwd)/specs/max/maxSpec.dfy &> experimentOutput/MaxSpecCorrect/maxSpecCorrect_output.txt
mkdir experimentOutput/MaxSpecCorrect/outputLogs
cp ./outputLogs/* experimentOutput/MaxSpecCorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Max Spec (Correct) - output found in ./experimentOutput/MaxSpecCorrect/maxSpecCorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Max Spec (Incorrect)"
mkdir experimentOutput/MaxSpecIncorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:maxExample.maxSpec /proofName:maxTest.maxT /proofLocation:"$(pwd)/specs/max/lemmaMaxTest.dfy" /serverIpPortList:ipPorts.txt $(pwd)/specs/max/maxSpec.dfy &> experimentOutput/MaxSpecIncorrect/maxSpecIncorrect_output.txt
mkdir experimentOutput/MaxSpecIncorrect/outputLogs
cp ./outputLogs/* experimentOutput/MaxSpecIncorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Max Spec (Incorrect) - output found in ./experimentOutput/MaxSpecIncorrect/maxSpecIncorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Sort Spec (Correct)"
mkdir experimentOutput/SortSpecCorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:sortSpec.IsSorted /proofName:sort.merge_sort /proofLocation:"$(pwd)/specs/sort/sortCorrect.dfy" /serverIpPortList:ipPorts.txt $(pwd)/specs/sort/sortSpec.dfy &> experimentOutput/SortSpecCorrect/sortSpecCorrect_output.txt
mkdir experimentOutput/SortSpecCorrect/outputLogs
cp ./outputLogs/* experimentOutput/SortSpecCorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Sort Spec (Correct) - output found in ./experimentOutput/SortSpecCorrect/sortSpecCorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Sort Spec (Incorrect)"
mkdir experimentOutput/SortSpecIncorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:sortSpec.IsSorted /proofName:sort.sortWrong /proofLocation:"$(pwd)/specs/sort/sortIncorrect.dfy" /serverIpPortList:ipPorts.txt $(pwd)/specs/sort/sortSpec.dfy &> experimentOutput/SortSpecIncorrect/sortSpecIncorrect_output.txt
mkdir experimentOutput/SortSpecIncorrect/outputLogs
cp ./outputLogs/* experimentOutput/SortSpecIncorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Sort Spec (Incorrect) - output found in ./experimentOutput/SortSpecIncorrect/sortSpecIncorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Binary Search (Correct)"
mkdir experimentOutput/BSearchSpecCorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:searchSpec.searchSpecIncorrectV2 /proofName:BinarySearch.BinarySearch /proofLocation:"$(pwd)/specs/search/searchCorrect.dfy" /serverIpPortList:ipPorts.txt $(pwd)/specs/search/searchSpec.dfy &> experimentOutput/BSearchSpecCorrect/bsearchSpecCorrect_output.txt
mkdir experimentOutput/BSearchSpecCorrect/outputLogs
cp ./outputLogs/* experimentOutput/BSearchSpecCorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Sort Spec (Incorrect) - output found in ./experimentOutput/BSearchSpecCorrect/bsearchSpecCorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Binary Search (Incorrect)"
mkdir experimentOutput/BSearchSpecIncorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:searchSpec.searchSpecIncorrectV2 /proofName:BinarySearch.BinarySearchIncorrect /proofLocation:"$(pwd)/specs/search/searchIncorrect.dfy" /serverIpPortList:ipPorts.txt $(pwd)/specs/search/searchSpec.dfy &> experimentOutput/BSearchSpecIncorrect/bsearchSpecIncorrect_output.txt
mkdir experimentOutput/BSearchSpecIncorrect/outputLogs
cp ./outputLogs/* experimentOutput/BSearchSpecIncorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Sort Spec (Incorrect) - output found in ./experimentOutput/BSearchSpecIncorrect/bsearchSpecCorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for KV SM (Correct)"
mkdir experimentOutput/KVSMSpecCorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:MapSpec.QueryOp /proofName:RefinementProof.RefinementNext /proofLocation:"$(pwd)/specs/kvsm/kv_proof_correctProto_incorrectProof.dfy" /serverIpPortList:ipPorts.txt /mutationRootName:MapSpec.Next /IsStateMachine $(pwd)/specs/kvsm/kvSmSpecIncorrect.dfy &> experimentOutput/KVSMSpecCorrect/kvmsmSpecCorrect_output.txt
mkdir experimentOutput/KVSMSpecCorrect/outputLogs
cp ./outputLogs/* experimentOutput/KVSMSpecCorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for KV SM (Correct) - output found in ./experimentOutput/KVSMSpecCorrect/kvmsmSpecCorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for KV SM (Incorrect)"
mkdir experimentOutput/KVSMSpecIncorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:MapSpec.QueryOp /proofName:RefinementProof.RefinementNext /proofLocation:"$(pwd)/specs/kvsm/kv_proof_incorrect.dfy" /serverIpPortList:ipPorts.txt /mutationRootName:MapSpec.Next /IsStateMachine $(pwd)/specs/kvsm/kvSmSpecIncorrect.dfy &> experimentOutput/KVSMSpecIncorrect/kvmsmSpecIncorrect_output.txt
mkdir experimentOutput/KVSMSpecIncorrect/outputLogs
cp ./outputLogs/* experimentOutput/KVSMSpecIncorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for KV SM (Incorrect) - output found in ./experimentOutput/KVSMSpecIncorrect/kvmsmSpecIncorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Token-wre (Correct)"
mkdir experimentOutput/Token-wreSpecCorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:wrapperModule.TokenRevertExternal.GInv /proofName:wrapperModule.proofStub /mutationRootName:wrapperModule.TokenRevertExternal.GInv /serverIpPortList:ipPorts.txt $(pwd)/specs/token-wre/token-with-revert-external.dfy &> experimentOutput/Token-wreSpecCorrect/token-wreCorrect_output.txt
mkdir experimentOutput/Token-wreSpecCorrect/outputLogs
cp ./outputLogs/* experimentOutput/Token-wreSpecCorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Token-wre (Correct)- output found in ./experimentOutput/Token-wreSpecCorrect/token-wreCorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Token-wre (Incorrect)"
mkdir experimentOutput/Token-wreSpecIncorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:wrapperModule.TokenRevertExternal.GInv /proofName:wrapperModule.proofStub /mutationRootName:wrapperModule.TokenRevertExternal.GInv /serverIpPortList:ipPorts.txt $(pwd)/specs/token-wre/tokenIncorrect.dfy &> experimentOutput/Token-wreSpecIncorrect/token-wreIncorrect_output.txt
mkdir experimentOutput/Token-wreSpecIncorrect/outputLogs
cp ./outputLogs/* experimentOutput/Token-wreSpecIncorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Token-wre (Incorrect)- output found in ./experimentOutput/Token-wreSpecIncorrect/token-wreIncorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for SimpleAuction-wre (Correct)"
mkdir experimentOutput/SimpleAuction-wreSpecCorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:wrapperModule.SimpleAuctionRevertExternal.GInv /proofName:wrapperModule.SimpleAuctionRevertExternal.proofStub /mutationRootName:wrapperModule.SimpleAuctionRevertExternal.GInv /serverIpPortList:ipPorts.txt $(pwd)/specs/simpleAuction-wre/SimpleAuction-with-revert-external.dfy &> experimentOutput/SimpleAuction-wreSpecCorrect/SimpleAuction-wreCorrect_output.txt
mkdir experimentOutput/SimpleAuction-wreSpecCorrect/outputLogs
cp ./outputLogs/* experimentOutput/SimpleAuction-wreSpecCorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Token-wre (Correct)- output found in ./experimentOutput/SimpleAuction-wreSpecCorrect/SimpleAuction-wreCorrect_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for SimpleAuction-wre (Incorrect)"
mkdir experimentOutput/SimpleAuction-wreSpecIncorrect
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:wrapperModule.SimpleAuctionRevertExternal.GInv /proofName:wrapperModule.SimpleAuctionRevertExternal.proofStub /mutationRootName:wrapperModule.SimpleAuctionRevertExternal.GInv /serverIpPortList:ipPorts.txt $(pwd)/specs/simpleAuction-wre/auctionIncorrect.dfy &> experimentOutput/SimpleAuction-wreSpecIncorrect/SimpleAuction-wreIncorrect_output.txt
mkdir experimentOutput/SimpleAuction-wreSpecIncorrect/outputLogs
cp ./outputLogs/* experimentOutput/SimpleAuction-wreSpecIncorrect/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Token-wre (Incorrect)- output found in ./experimentOutput/SimpleAuction-wreSpecIncorrect/SimpleAuction-wreIncorrect_output.txt \n"
# --------------
# --------------
# Open Source
# --------------
echo -e "Starting Mutation Testing for Div"
mkdir experimentOutput/Div
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /noCheating:1 /mutationTarget:div.wrapper /proofName:div.divRem /mutationRootName:div.wrapper /proofLocation:"$(pwd)/specs/div/div.dfy" /serverIpPortList:ipPorts.txt /inPlaceMutation /functionMethodFlag $(pwd)/specs/div/div.dfy &> experimentOutput/Div/Div_output.txt
mkdir experimentOutput/Div/outputLogs
cp ./outputLogs/* experimentOutput/Div/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Div - output found in ./experimentOutput/Div/Div_output.txt \n"
# # --------------
echo -e "Starting Mutation Testing for NthHarmonic"
mkdir experimentOutput/NthHarmonic
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /noCheating:1 /mutationTarget:nHarm.wrapper /proofName:nHarm.NthHarmonic /mutationRootName:nHarm.wrapper /proofLocation:"$(pwd)/specs/nthHarmonic/nHarmonic.dfy" /serverIpPortList:ipPorts.txt /inPlaceMutation /functionMethodFlag $(pwd)/specs/nthHarmonic/nHarmonic.dfy &> experimentOutput/NthHarmonic/NthHarmonic_output.txt
mkdir experimentOutput/NthHarmonic/outputLogs
cp ./outputLogs/* experimentOutput/NthHarmonic/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for NthHarmonic - output found in ./experimentOutput/NthHarmonic/NthHarmonic_output.txt \n"
# --------------
# DAISY-NSFD
# --------------
# clone daisy-nfsd repo and reset to commit hash used in initial experiments.
echo -e "Cloning Daisy-nsfd Repo into ./specs/daisy-nfsd"
cd specs/daisy-nfsd
git clone https://github.com/mit-pdos/daisy-nfsd.git
cd daisy-nfsd
git reset --hard 98434db21451b76c700dcf5783b2bca00a63c132
patch src/fs/dir_fs.dfy ../daisy.patch
cd ../../..
echo $(pwd)
mkdir experimentOutput/daisy-nfsd
# --------------
echo -e "Starting Mutation Testing for Daisy-nsfd WRITE"
mkdir experimentOutput/daisy-nfsd/WRTIE
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /noCheating:1 /arith:5 /mutationTarget:DirFs.DirFilesys.wrapper /proofName:DirFs.DirFilesys.WRITE /mutationRootName:DirFs.DirFilesys.wrapper /proofLocation:"$(pwd)/specs/daisy-nfsd/daisy-nfsd/src/fs/dir_fs.dfy" /serverIpPortList:ipPorts.txt /inPlaceMutation $(pwd)/specs/daisy-nfsd/daisy-nfsd/src/fs/dir_fs.dfy &> experimentOutput/daisy-nfsd/WRTIE/daisy-nfsd-WRTIE_output.txt
mkdir experimentOutput/daisy-nfsd/WRTIE/outputLogs
cp ./outputLogs/* experimentOutput/daisy-nfsd/WRTIE/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Daisy-nsfd WRITE - output found in ./experimentOutput/daisy-nfsd/WRTIE/daisy-nfsd-WRTIE_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for Daisy-nsfd GETATTR"
mkdir experimentOutput/daisy-nfsd/GETATTR
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /noCheating:1 /arith:5 /mutationTarget:DirFs.DirFilesys.wrapper /proofName:DirFs.DirFilesys.GETATTR /mutationRootName:DirFs.DirFilesys.wrapper /proofLocation:"$(pwd)/specs/daisy-nfsd/daisy-nfsd/src/fs/dir_fs.dfy" /serverIpPortList:ipPorts.txt /inPlaceMutation $(pwd)/specs/daisy-nfsd/daisy-nfsd/src/fs/dir_fs.dfy &> experimentOutput/daisy-nfsd/GETATTR/daisy-nfsd-GETATTR_output.txt
mkdir experimentOutput/daisy-nfsd/GETATTR/outputLogs
cp ./outputLogs/* experimentOutput/daisy-nfsd/GETATTR/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for Daisy-nsfd GETATTR - output found in ./experimentOutput/daisy-nfsd/GETATTR/daisy-nfsd-GETATTR_output.txt \n"
# --------------
# QBFT
# --------------
# clone qbft repo and reset to commit hash used in initial experiments.
echo -e "Cloning QBFT Repo into ./specs/qbft"
cd specs/qbft
git clone https://github.com/Consensys/qbft-formal-spec-and-verification.git
cd qbft-formal-spec-and-verification
git reset --hard 1630128e7f5468c08983d08064230422d9337805
patch dafny/ver/L1/theorems.dfy ../theorems.patch
cd ../../..
echo $(pwd)
mkdir experimentOutput/qbft/
# --------------
echo -e "Starting Mutation Testing for qbft NetworkInit"
mkdir experimentOutput/qbft/NetworkInit
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:L1_SpecNetwork.NetworkInit /proofName:L1_Theorems.lemmaConsistencyAndStability /proofLocation:"$(pwd)/specs/qbft/qbft-formal-spec-and-verification/dafny/ver/L1/theorems.dfy" /serverIpPortList:ipPorts.txt /holeEvalCons:L1_InstrDSStateInvariantsDefs.allIndInv /holeEvalBase:L1_DistributedSystem.DSInit $(pwd)/specs/qbft/qbft-formal-spec-and-verification/dafny/ver/L1/distr_system_spec/network.dfy &> experimentOutput/qbft/NetworkInit/qbft-networkInit_output.txt
mkdir experimentOutput/qbft/NetworkInit/outputLogs
cp ./outputLogs/* experimentOutput/qbft/NetworkInit/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for qbft NetworkInit - output found in ./experimentOutput/qbft/NetworkInit/qbft-networkInit_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for qbft AdversaryNext"
mkdir experimentOutput/qbft/AdversaryNext
./Binaries/Dafny /compile:0 /timeLimit:3520 /trace /arith:5 /noCheating:1 /mutationTarget:L1_Adversary.AdversaryNext /proofName:L1_Theorems.lemmaConsistencyAndStability /proofLocation:"$(pwd)/specs/qbft/qbft-formal-spec-and-verification/dafny/ver/L1/theorems.dfy" /serverIpPortList:ipPorts.txt /holeEvalCons:L1_InstrDSStateInvariantsDefs.allIndInv /holeEvalBase:L1_InstrumentedSpecs.DSInstrNextNodeMultiple $(pwd)/specs/qbft/qbft-formal-spec-and-verification/dafny/ver/L1/distr_system_spec/adversary.dfy &> experimentOutput/qbft/AdversaryNext/qbft-adversaryNext_output.txt
mkdir experimentOutput/qbft/AdversaryNext/outputLogs
cp ./outputLogs/* experimentOutput/qbft/AdversaryNext/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for qbft AdversaryNext - output found in ./experimentOutput/qbft/AdversaryNext/qbft-adversaryNext_output.txt \n"
# --------------
echo -e "Starting Mutation Testing for qbft AdversaryInit"
mkdir experimentOutput/qbft/AdversaryInit
./Binaries/Dafny /compile:0 /timeLimit:1520 /trace /arith:5 /noCheating:1 /mutationTarget:L1_Adversary.AdversaryInit /proofName:L1_Theorems.lemmaConsistencyAndStability /proofLocation:"$(pwd)/specs/qbft/qbft-formal-spec-and-verification/dafny/ver/L1/theorems.dfy" /serverIpPortList:ipPorts.txt /holeEvalCons:L1_InstrDSStateInvariantsDefs.allIndInv /holeEvalBase:L1_InstrumentedSpecs.InstrDSInit $(pwd)/specs/qbft/qbft-formal-spec-and-verification/dafny/ver/L1/distr_system_spec/adversary.dfy &> experimentOutput/qbft/AdversaryInit/qbft-adversaryInit_output.txt
mkdir experimentOutput/qbft/AdversaryInit/outputLogs
cp ./outputLogs/* experimentOutput/qbft/AdversaryInit/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for qbft AdversaryInit - output found in ./experimentOutput/qbft/AdversaryInit/qbft-adversaryInit_output.txt \n"
# --------------
# DVT
# --------------
# clone dvt repo and reset to commit hash used in initial experiments.
echo -e "Cloning DVT Repo into ./specs/dvt"
cd specs/dvt
git clone https://github.com/Consensys/distributed-validator-formal-specs-and-verification.git
cd distributed-validator-formal-specs-and-verification
git reset --hard fed55f5ea4d0ebf1b7d21b2c6fc1ecb79b5c3dd3
patch src/specs/consensus/consensus.dfy ../consensus.patch
patch src/specs/dv/dv_attestation_creation.dfy ../dvAttestationCreation.patch
cd ../../..
echo $(pwd)
mkdir experimentOutput/dvt/
# --------------
echo -e "Starting Mutation Testing for dvt AdversaryNext"
mkdir experimentOutput/dvt/AdversaryNext
./Binaries/Dafny /compile:0 /noCheating:1 /trace /timeLimit:10000 /mutationTarget:DV.NextAdversary /proofName:No_Slashable_Attestations_Main_Theorem.lem_non_slashable_attestations /proofLocation:"$(pwd)/specs/dvt/distributed-validator-formal-specs-and-verification/src/proofs/no_slashable_attestations/main_theorem.dfy" /serverIpPortList:ipPorts.txt $(pwd)/specs/dvt/distributed-validator-formal-specs-and-verification/src/specs/dv/dv_attestation_creation.dfy &> experimentOutput/dvt/AdversaryNext/dvt-adversaryNext_output.txt
mkdir experimentOutput/dvt/AdversaryNext/outputLogs
cp ./outputLogs/* experimentOutput/dvt/AdversaryNext/outputLogs
rm ./outputLogs/*
echo -e "DONE Mutation Testing for dvt AdversaryNext - output found in ./experimentOutput/dvt/AdversaryNext/dvt-adversaryNext_output.txt \n"