blob: b11f6d8089edb3fbc3e4914553c5f12cea45a03a [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",
"reboot_test.go",
]
}
go_test("system_tests_reboot") {
library = ":gopkg"
environments = [ disabled_env ]
}
}