mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
38 lines
1.1 KiB
Dart
38 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 'dart:io';
|
|
|
|
import '../framework/task_result.dart';
|
|
import '../framework/utils.dart';
|
|
import '../versions/gallery.dart' show galleryVersion;
|
|
import 'perf_tests.dart';
|
|
|
|
class NewGalleryPerfTest extends PerfTest {
|
|
NewGalleryPerfTest(
|
|
this.galleryDir, {
|
|
String timelineFileName = 'transitions',
|
|
String dartDefine = '',
|
|
bool enableImpeller = false,
|
|
super.timeoutSeconds,
|
|
}) : super(
|
|
galleryDir.path,
|
|
'test_driver/transitions_perf.dart',
|
|
timelineFileName,
|
|
dartDefine: dartDefine,
|
|
enableImpeller: enableImpeller,
|
|
);
|
|
|
|
@override
|
|
Future<TaskResult> run() async {
|
|
// Manually roll the new gallery version for now. If the new gallery repo
|
|
// turns out to be updated frequently in the future, we can set up an auto
|
|
// roller to update this version.
|
|
await getNewGallery(galleryVersion, galleryDir);
|
|
return super.run();
|
|
}
|
|
|
|
final Directory galleryDir;
|
|
}
|