From a14f74ff3a1cbd521163c5f03d68113d50af93d3 Mon Sep 17 00:00:00 2001 From: Kevin Chisholm <kevinjchisholm@google.com> Date: Wed, 22 May 2024 11:08:21 -0500 Subject: [PATCH] [CP] [devicelab] explicitly enable vulkan validation in test. (#147382) (#148863) Fix for release build failure https://ci.chromium.org/ui/p/flutter/builders/prod/Linux_pixel_7pro%20hello_world_impeller/3962/overview Part of https://github.com/flutter/flutter/issues/142659 this test expects validation layers on, so we need to explicitly enable them before we can turn them off by default. --- dev/devicelab/bin/tasks/hello_world_impeller.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/devicelab/bin/tasks/hello_world_impeller.dart b/dev/devicelab/bin/tasks/hello_world_impeller.dart index e67a25b48e..d094882fda 100644 --- a/dev/devicelab/bin/tasks/hello_world_impeller.dart +++ b/dev/devicelab/bin/tasks/hello_world_impeller.dart @@ -54,6 +54,7 @@ Future<TaskResult> run() async { 'run', options: <String>[ '--enable-impeller', + '--enable-vulkan-validation', '-d', device.deviceId, ], -- GitLab