blob: 5a14580fc0da122b99336b6096a8edf7f9b8dbdf [file] [log] [blame]
# Copyright 2023 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.
load(
"@fuchsia_infra//infra:infra.bzl",
"FUCHSIA_TEST_TARGET",
"fuchsia_builder_group",
"fuchsia_test_group",
)
qemu_common_tests = [
]
fuchsia_test_group(
name = "tests_qemu",
product_bundle = "core.x64",
test_target = FUCHSIA_TEST_TARGET.QEMU,
deps = qemu_common_tests,
)
fuchsia_test_group(
name = "tests_qemu_asan",
asan_enabled = True,
product_bundle = "core.x64",
test_target = FUCHSIA_TEST_TARGET.QEMU,
deps = qemu_common_tests,
)
fuchsia_test_group(
name = "tests_vim3",
product_bundle = "core.vim3",
test_target = FUCHSIA_TEST_TARGET.VIM3,
deps = [],
)
# buildifier: leave-alone
fuchsia_builder_group(
name = "infra",
build_only = [
],
test_groups = [
":tests_qemu",
":tests_qemu_asan",
":tests_vim3",
],
cipd_uploads = [
],
)