blob: 34e8e1119363a1a8babe30d030fdebf64dd8edfa [file] [log] [blame]
# Copyright 2021 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.
import("//build/components.gni")
import("//build/rust/rustc_test.gni")
rustc_test("bt_bootstrap_integration_tests") {
edition = "2021"
source_root = "src/lib.rs"
deps = [
"//sdk/fidl/fuchsia.bluetooth.sys:fuchsia.bluetooth.sys_rust",
"//src/connectivity/bluetooth/lib/fuchsia-bluetooth",
"//src/connectivity/bluetooth/testing/bt-test-harness",
"//src/connectivity/bluetooth/testing/test-harness",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/lib.rs" ]
configs -= [ "//build/config/rust/lints:allow_unused_results" ]
}
fuchsia_test_component("bt-bootstrap-integration-tests-component") {
manifest = "meta/bt-bootstrap-integration-tests.cml"
deps = [ ":bt_bootstrap_integration_tests" ]
}
fuchsia_test_package("bt-bootstrap-integration-tests") {
test_components = [ ":bt-bootstrap-integration-tests-component" ]
test_specs = {
# control the parallelism
parallel = 1
}
}