blob: 92b3b1064c19184d2850c819e39d7c5696de8943 [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.
"//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" ]
}