blob: 10874d389764d483dda81b3dc4fdc23a06e10e35 [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/components.gni")
import("//build/test.gni")
test("status") {
output_name = "status-test"
sources = [ "status.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("status-test-pkg") {
package_name = "status-test"
deps = [ ":status" ]
}
group("tests") {
testonly = true
deps = [ ":status-test-pkg" ]
}