[ benchmark ] Use '.' instead of '_' to represent sub-benchmarks in SDKArtifactSizes

Change-Id: Ia47f9565025b79440aa179a215db2d7a95b744e7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/201582
Reviewed-by: Alexander Markov <alexmarkov@google.com>
Commit-Queue: Ben Konyi <bkonyi@google.com>
This commit is contained in:
Ben Konyi 2021-05-27 18:14:14 +00:00 committed by commit-bot@chromium.org
parent f09b484cca
commit 71238faee8
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ const snapshots = <String>[
Future<void> reportArtifactSize(String path, String name) async {
final size = await File(path).length();
print('SDKArtifactSize_$name(CodeSize): $size');
print('SDKArtifactSize.$name(CodeSize): $size');
}
Future<void> main() async {

View file

@ -35,7 +35,7 @@ const snapshots = <String>[
Future<void> reportArtifactSize(String path, String name) async {
final size = await File(path).length();
print('SDKArtifactSize_$name(CodeSize): $size');
print('SDKArtifactSize.$name(CodeSize): $size');
}
Future<void> main() async {