blob: 407df1f637f9e293649675d6f361dc5db82dfe6c [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/test.gni")
import("//src/sys/build/fuchsia_unittest_package.gni")
test("libc-test") {
sources = [ "libc.c" ]
deps = [
# For unittests of _impl.h headers.
"//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" ]
}