blob: 1f6fae5f3f8ebdbe198946fb4194a1e7301c2651 [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"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "status.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/zxtest",
]
}
fuchsia_unittest_package("status-test-pkg") {
package_name = "status-test"
deps = [ ":status" ]
}
group("tests") {
testonly = true
deps = [ ":status-test-pkg" ]
}