Skip to content
Snippets Groups Projects
Commit 345abfd6 authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #9871 from ctiller/fix-bm

Fix uploader
parents 2467630f e177c24b
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,10 @@ columns = [ ...@@ -67,7 +67,10 @@ columns = [
('svr_transport_stalls_per_iteration', 'float'), ('svr_transport_stalls_per_iteration', 'float'),
('svr_stream_stalls_per_iteration', 'float'), ('svr_stream_stalls_per_iteration', 'float'),
('atm_cas_per_iteration', 'float'), ('atm_cas_per_iteration', 'float'),
('atm_add_per_iteration', 'float') ('atm_add_per_iteration', 'float'),
('end_of_stream', 'boolean'),
('header_bytes_per_iteration', 'float'),
('framing_bytes_per_iteration', 'float'),
] ]
if sys.argv[1] == '--schema': if sys.argv[1] == '--schema':
...@@ -131,7 +134,15 @@ bm_specs = { ...@@ -131,7 +134,15 @@ bm_specs = {
'BM_IsolatedFilter' : { 'BM_IsolatedFilter' : {
'tpl': ['fixture', 'client_mutator'], 'tpl': ['fixture', 'client_mutator'],
'dyn': [], 'dyn': [],
} },
'BM_HpackEncoderEncodeHeader' : {
'tpl': ['fixture'],
'dyn': ['end_of_stream', 'request_size'],
},
'BM_HpackParserParseHeader' : {
'tpl': ['fixture'],
'dyn': [],
},
} }
def numericalize(s): def numericalize(s):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment