![auto-submit[bot]](/assets/img/avatar_default.png)
<!-- start_original_pr_link --> Reverts: flutter/flutter#162644 <!-- end_original_pr_link --> <!-- start_initiating_author --> Initiated by: matanlurey <!-- end_initiating_author --> <!-- start_revert_reason --> Reason for reverting: At least one post-submit test depends on the output of `--verbose`. <!-- end_revert_reason --> <!-- start_original_pr_author --> Original PR Author: matanlurey <!-- end_original_pr_author --> <!-- start_reviewers --> Reviewed By: {cbracken, reidbaker, jonahwilliams} <!-- end_reviewers --> <!-- start_revert_body --> This change reverts the following previous change: These can be useful, but were probably left in past the point where they are always useful: - https://github.com/flutter/flutter/pull/58018 - https://github.com/flutter/flutter/pull/56342 - https://github.com/flutter/flutter/pull/74080 ... compared to the cost of reading these logs with 1000s of lines of `stdout: ` output. Will ask the CI gods if any of this was load-bearing before sending out for review. <!-- end_revert_body --> Co-authored-by: auto-submit[bot] <flutter-engprod-team@google.com>
36 lines
1.1 KiB
Dart
36 lines
1.1 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter_devicelab/framework/framework.dart';
|
|
import 'package:flutter_devicelab/framework/utils.dart';
|
|
import 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
|
|
class HelloWorldMemoryTest extends MemoryTest {
|
|
HelloWorldMemoryTest()
|
|
: super(
|
|
'${flutterDirectory.path}/examples/hello_world',
|
|
'lib/main.dart',
|
|
'io.flutter.examples.hello_world',
|
|
);
|
|
|
|
/// Launch an app with no instrumentation and measure its memory usage after
|
|
/// 1.5s and 3.0s.
|
|
@override
|
|
Future<void> useMemory() async {
|
|
print('launching $project$test on device...');
|
|
await flutter(
|
|
'run',
|
|
options: <String>['--verbose', '--release', '--no-resident', '-d', device!.deviceId, test],
|
|
);
|
|
await Future<void>.delayed(const Duration(milliseconds: 1500));
|
|
await recordStart();
|
|
await Future<void>.delayed(const Duration(milliseconds: 3000));
|
|
await recordEnd();
|
|
}
|
|
}
|
|
|
|
Future<void> main() async {
|
|
await task(HelloWorldMemoryTest().run);
|
|
}
|