blob: 8fdca7cee5fb6c3583ab590417daf1a3b38f1934 [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")
group("test") {
testonly = true
deps = [ ":id_allocator-test" ]
}
test("id_allocator-test") {
sources = [ "id_allocator.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/id_allocator",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("id-allocator-test-pkg") {
package_name = "id_allocator-test"
deps = [ ":id_allocator-test" ]
}
group("tests") {
testonly = true
deps = [ ":id-allocator-test-pkg" ]
}