Skip to content

Commit

Permalink
disable Impeller on external texture test. (#149292)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahwilliams authored May 30, 2024
1 parent c787dc9 commit d3beaae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ import 'package:flutter_devicelab/tasks/integration_tests.dart';

Future<void> main() async {
deviceOperatingSystem = DeviceOperatingSystem.android;
await task(createExternalTexturesFrameRateIntegrationTest());
await task(createExternalTexturesFrameRateIntegrationTest(extraOptions: <String>['--no-enable-impeller']));
}
3 changes: 2 additions & 1 deletion dev/devicelab/lib/tasks/integration_tests.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ TaskFunction createIntegrationTestFlavorsTest({Map<String, String>? environment}
).call;
}

TaskFunction createExternalTexturesFrameRateIntegrationTest() {
TaskFunction createExternalTexturesFrameRateIntegrationTest({ List<String> extraOptions = const <String>[] }) {
return DriverTest(
'${flutterDirectory.path}/dev/integration_tests/external_textures',
'lib/frame_rate_main.dart',
extraOptions: extraOptions,
).call;
}

Expand Down

0 comments on commit d3beaae

Please sign in to comment.