| // Copyright 2022 The Fuchsia Authors. All rights reserved. | 
 | // Use of this source code is governed by a BSD-style license that can be | 
 | // found in the LICENSE file. | 
 | { | 
 |     include: [ | 
 |         "inspect/client.shard.cml", | 
 |  | 
 |         // Using the ELF runner instead of GTest runner allows us to pass the `gtest_filter` flag. | 
 |         "sys/testing/elf_test_runner.shard.cml", | 
 |         "syslog/client.shard.cml", | 
 |         "trace/client.shard.cml", | 
 |         "vulkan/client.shard.cml", | 
 |     ], | 
 |     program: { | 
 |         binary: "bin/flatland_renderer_unittests", | 
 |  | 
 |         // Only run some tests so that this test component can run within the test timeout. | 
 |         // In particular, run all the tests that aren't run by the other sharded components. | 
 |         args: [ "--gtest_filter=-*VulkanRendererTest*:*VulkanRendererColorTest*" ], | 
 |     }, | 
 |     use: [ | 
 |         { | 
 |             protocol: [ "fuchsia.scheduler.RoleManager" ], | 
 |         }, | 
 |     ], | 
 | } |