| OLD | NEW |
| 1 # This file contains a list of Mojo benchmarks. For description of the file | 1 # This file contains a list of Mojo benchmarks. For description of the file |
| 2 # format, see `mojo_benchmark --help`. | 2 # format, see `mojo_benchmark --help`. |
| 3 | 3 |
| 4 benchmarks = [ | 4 benchmarks = [ |
| 5 { | 5 { |
| 6 'name': 'Dart app initialization', | 6 'name': 'dart init', |
| 7 'app': 'https://core.mojoapps.io/dart_traced_application.mojo', | 7 'app': 'https://core.mojoapps.io/dart_traced_application.mojo', |
| 8 'duration': 10, | 8 'duration': 10, |
| 9 'measurements': [ | 9 'measurements': [ |
| 10 'time_until/traced_application/initialized', | 10 'time_until/traced_application/initialized', |
| 11 'time_between/traced_application/initialized/traced_application/connected'
, | 11 'time_between/traced_application/initialized/traced_application/connected'
, |
| 12 ] | 12 ] |
| 13 }, | 13 }, |
| 14 { | 14 { |
| 15 'name': 'Dart app initialization with handler already running', | 15 'name': 'dart init with handler', |
| 16 'app': 'https://core.mojoapps.io/dart_handler_running.mojo', | 16 'app': 'https://core.mojoapps.io/dart_handler_running.mojo', |
| 17 'duration': 10, | 17 'duration': 10, |
| 18 'measurements': [ | 18 'measurements': [ |
| 19 'time_between/dart_handler_running/connecting/traced_application/initializ
ed', | 19 'time_between/dart_handler_running/connecting/traced_application/initializ
ed', |
| 20 ] | 20 ] |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 'name': 'C++ app initialization', | 23 'name': 'cpp init', |
| 24 'app': 'https://core.mojoapps.io/trace_me.mojo', | 24 'app': 'https://core.mojoapps.io/trace_me.mojo', |
| 25 'duration': 10, | 25 'duration': 10, |
| 26 'measurements': [ | 26 'measurements': [ |
| 27 'time_until/trace_me/initialized', | 27 'time_until/trace_me/initialized', |
| 28 'time_between/trace_me/initialized/trace_me/connected', | 28 'time_between/trace_me/initialized/trace_me/connected', |
| 29 ], | 29 ], |
| 30 'shell-args': [ | 30 'shell-args': [ |
| 31 '--args-for=https://core.mojoapps.io/trace_me.mojo --early-tracing', | 31 '--args-for=https://core.mojoapps.io/trace_me.mojo --early-tracing', |
| 32 ] | 32 ] |
| 33 }, | 33 }, |
| 34 ] | 34 ] |
| 35 | 35 |
| OLD | NEW |