blob: 2d2b53015b4333abb446c42d8d6442819903b57b [file] [log] [blame]
# 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.
import("//build/go/go_library.gni")
import("//build/go/go_test.gni")
import("//src/sys/pkg/tests/system-tests/system-tests.gni")
if (is_host) {
go_library("gopkg") {
testonly = true
deps = [
"../check",
"../flash",
"../pave",
"//src/testing/host-target-testing/artifacts",
"//src/testing/host-target-testing/cli",
"//src/testing/host-target-testing/device",
"//src/testing/host-target-testing/errutil",
"//src/testing/host-target-testing/sl4f",
"//src/testing/host-target-testing/util",
"//tools/lib/color",
"//tools/lib/logger",
]
non_go_deps = [ "//src/sys/pkg/tests/system-tests:non_go_deps" ]
sources = [
"config.go",
"recovery_test.go",
]
}
go_test("system_tests_recovery") {
library = ":gopkg"
environments = [ disabled_env ]
}
}