Skip to content

Commit 3f7b1b5

Browse files
authored
Merge pull request #591 from ahoppen/pr/print-raw-request-durations
Print raw request durations after running the SourceKit stress tester
2 parents 828a083 + 23fc8ca commit 3f7b1b5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

run_sk_stress_test

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,11 @@ class StressTesterRunner(object):
266266
except common.ExecuteCommandFailure:
267267
self.compat_runner_failed = True
268268

269+
if os.path.isfile(request_durations):
270+
print('\n---------- Raw request durations for further analysis ----------\n')
271+
with open(request_durations, 'r') as request_durations_file:
272+
print(request_durations_file.read())
273+
269274
success = self._process_output(results, self.xfails_path)
270275

271276
return success

0 commit comments

Comments
 (0)