blob: e6f6fddea2e0e83e303c10188f9a46b7f7b286b6 [file] [log] [blame]
# Copyright 2019 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/rust/rustc_test.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
group("tests") {
testonly = true
deps = [
":recovery_integration_test",
]
}
rustc_test("bin") {
name = "recovery_integration_test"
edition = "2018"
deps = [
"//garnet/public/rust/fdio",
"//garnet/public/rust/fuchsia-async",
"//garnet/public/rust/fuchsia-component",
"//garnet/public/rust/fuchsia-runtime",
"//sdk/fidl/fuchsia.sys:fuchsia.sys-rustc",
"//third_party/rust_crates:failure",
"//third_party/rust_crates:futures-preview",
]
}
test_package("recovery_integration_test") {
deps = [
":bin",
]
tests = [
{
name = "recovery_integration_test"
environments = basic_envs
},
]
}