blob: 0ba50c77f0e1e4d5ddb7d3914b60ebd4fca1568b [file] [log] [blame]
# Copyright 2020 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("libc-test") {
sources = [ "libc.c" ]
deps = [
# For unittests of _impl.h headers.
"//src/sys/testing/elftest",
"//zircon/third_party/ulib/musl:musl_internal_testing",
]
}
fuchsia_unittest_package("libc-test-package") {
package_name = "libc-test"
deps = [ ":libc-test" ]
}
group("tests") {
testonly = true
deps = [ ":libc-test-package" ]
}