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