| 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 app initialization', |
| 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_until/traced_application/connected', |
| 11 ] | 12 ] |
| 12 }, | 13 }, |
| 13 { | 14 { |
| 14 'name': 'C++ app initialization', | 15 'name': 'C++ app initialization', |
| 15 'app': 'https://core.mojoapps.io/trace_me.mojo', | 16 'app': 'https://core.mojoapps.io/trace_me.mojo', |
| 16 'duration': 10, | 17 'duration': 10, |
| 17 'measurements': [ | 18 'measurements': [ |
| 18 'time_until/trace_me/initialized', | 19 'time_until/trace_me/initialized', |
| 20 'time_until/trace_me/connected', |
| 19 ], | 21 ], |
| 20 'shell-args': [ | 22 'shell-args': [ |
| 21 '--args-for=https://core.mojoapps.io/trace_me.mojo --early-tracing', | 23 '--args-for=https://core.mojoapps.io/trace_me.mojo --early-tracing', |
| 22 ] | 24 ] |
| 23 }, | 25 }, |
| 24 ] | 26 ] |
| 25 | 27 |
| OLD | NEW |