@@ -105,7 +105,7 @@ def runTests(args):
105
105
status = call ([Mongoose_tests_dir + "mongoose_test_memory" , matrix_path ])
106
106
if status :
107
107
print ("Error! Memory Test Failure" )
108
- cleanup (args , row , matrix_exists , gzip_path )
108
+ # cleanup(args, row, matrix_exists, gzip_path)
109
109
sys .exit (status )
110
110
if args .tests == 'valgrind' or args .tests == 'all' :
111
111
print ("Calling Valgrind Test..." )
@@ -115,7 +115,7 @@ def runTests(args):
115
115
status = call ([valgrind + " --leak-check=full " + Mongoose_tests_dir + "mongoose_test_memory" , matrix_path ])
116
116
if status :
117
117
print ("Error! Valgrind Test Failure" )
118
- cleanup (args , row , matrix_exists , gzip_path )
118
+ # cleanup(args, row, matrix_exists, gzip_path)
119
119
sys .exit (status )
120
120
else :
121
121
print ("\033 [91mERROR!\033 [0m Unable to find Valgrind. Skipping Valgrind Test..." )
@@ -124,27 +124,27 @@ def runTests(args):
124
124
status = call ([Mongoose_tests_dir + "mongoose_test_io" , matrix_path , "1" ])
125
125
if status :
126
126
print ("Error! I/O Test Failure" )
127
- cleanup (args , row , matrix_exists , gzip_path )
127
+ # cleanup(args, row, matrix_exists, gzip_path)
128
128
sys .exit (status )
129
129
if args .tests == 'edgesep' or args .tests == 'all' :
130
130
print ("Calling Edge Separator Test..." )
131
131
target_split = args .target_split
132
132
status = call ([Mongoose_tests_dir + "mongoose_test_edgesep" , matrix_path , str (target_split )])
133
133
if status :
134
134
print ("Error! Edge Separator Test Failure" )
135
- cleanup (args , row , matrix_exists , gzip_path )
135
+ # cleanup(args, row, matrix_exists, gzip_path)
136
136
sys .exit (status )
137
137
if args .tests == 'performance' or args .tests == 'all' :
138
138
print ("Calling Performance Test..." )
139
139
status = call ([Mongoose_tests_dir + "mongoose_test_performance" , matrix_path , row [0 ] + '_' + row [1 ] + '_performance.txt' ])
140
140
if status :
141
141
print ("Error! Performance Test Failure" )
142
- cleanup (args , row , matrix_exists , gzip_path )
142
+ # cleanup(args, row, matrix_exists, gzip_path)
143
143
sys .exit (status )
144
144
145
145
# Delete the matrix only if we downloaded it and the keep
146
146
# flag is off
147
- cleanup (args , row , matrix_exists , gzip_path )
147
+ # cleanup(args, row, matrix_exists, gzip_path)
148
148
149
149
# delete the ssstats.csv file
150
150
os .remove (stats_file )
0 commit comments