blob: 0e90404acd107922f65d27dbd92e475bda501e05 [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("handle-alias") {
output_name = "handle-alias-test"
sources = [ "handle-alias.c" ]
deps = [
"//sdk/lib/fdio",
"//src/zircon/lib/zircon",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("handle-alias-test-pkg") {
package_name = "handle-alias-test"
deps = [ ":handle-alias" ]
}
group("tests") {
testonly = true
deps = [ ":handle-alias-test-pkg" ]
}