Skip to content

Commit d3beaae

Browse files
disable Impeller on external texture test. (#149292)
This is failing with Impeller: https://ci.chromium.org/ui/p/flutter/builders/try/Linux_android_emu%20external_textures_integration_test/1414/overview Needs investigation.
1 parent c787dc9 commit d3beaae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dev/devicelab/bin/tasks/external_textures_integration_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ import 'package:flutter_devicelab/tasks/integration_tests.dart';
88

99
Future<void> main() async {
1010
deviceOperatingSystem = DeviceOperatingSystem.android;
11-
await task(createExternalTexturesFrameRateIntegrationTest());
11+
await task(createExternalTexturesFrameRateIntegrationTest(extraOptions: <String>['--no-enable-impeller']));
1212
}

dev/devicelab/lib/tasks/integration_tests.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@ TaskFunction createIntegrationTestFlavorsTest({Map<String, String>? environment}
4040
).call;
4141
}
4242

43-
TaskFunction createExternalTexturesFrameRateIntegrationTest() {
43+
TaskFunction createExternalTexturesFrameRateIntegrationTest({ List<String> extraOptions = const <String>[] }) {
4444
return DriverTest(
4545
'${flutterDirectory.path}/dev/integration_tests/external_textures',
4646
'lib/frame_rate_main.dart',
47+
extraOptions: extraOptions,
4748
).call;
4849
}
4950

0 commit comments

Comments
 (0)