blob: eccfd4551eb66afcdee062c965f4647287fdc7b3 [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/go/go_library.gni")
import("//build/go/go_test.gni")
go_library("runtests") {
deps = [
"//third_party/golibs:github.com/pkg/sftp",
"//tools/botanist:botanist_lib",
"//tools/lib/iomisc",
"//tools/lib/logger",
"//tools/lib/osmisc",
"//tools/lib/retry",
"//tools/net/sshutil",
"//tools/net/tftp",
"//tools/testing/testparser",
]
}
go_test("tests") {
output_name = "runtests_tests"
gopackages = [ "go.fuchsia.dev/fuchsia/tools/testing/runtests" ]
deps = [ ":runtests" ]
}