mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
32 lines
1.0 KiB
Dart
32 lines
1.0 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 'dart:io';
|
|
|
|
import 'package:flutter_devicelab/framework/devices.dart';
|
|
import 'package:flutter_devicelab/framework/framework.dart';
|
|
import 'package:flutter_devicelab/framework/utils.dart';
|
|
import 'package:flutter_devicelab/tasks/new_gallery.dart';
|
|
import 'package:path/path.dart' as path;
|
|
|
|
Future<void> main() async {
|
|
deviceOperatingSystem = DeviceOperatingSystem.android;
|
|
|
|
final Directory galleryParentDir = Directory.systemTemp.createTempSync('flutter_new_gallery_test.');
|
|
final Directory galleryDir = Directory(path.join(galleryParentDir.path, 'gallery'));
|
|
|
|
try {
|
|
await task(
|
|
NewGalleryPerfTest(
|
|
galleryDir,
|
|
// time out after 20 minutes allowing the tool to take a screenshot to debug
|
|
// https://github.com/flutter/flutter/issues/114025.
|
|
timeoutSeconds: 20 * 60,
|
|
).run,
|
|
);
|
|
} finally {
|
|
rmTree(galleryParentDir);
|
|
}
|
|
}
|