blob: 37b9695532bc6fdcd97efa83edfc61911aa17083 [file] [log] [blame]
# Copyright 2020 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("//src/sys/build/fuchsia_test_package.gni")
import("//src/sys/build/fuchsia_unittest_component.gni")
group("network-device") {
deps = [ "cpp" ]
}
fuchsia_unittest_component("netdev-client-cpp-test") {
deps = [ "cpp:tests" ]
manifest = "meta/cpp-test.cmx"
}
fuchsia_test_package("netdev-client-tests") {
deps = [ "//src/connectivity/network/tun/network-tun:component" ]
test_components = [ ":netdev-client-cpp-test" ]
test_specs = {
log_settings = {
max_severity = "ERROR"
}
}
}
group("tests") {
testonly = true
deps = [ ":netdev-client-tests" ]
}