blob: 9d7c0fc4d3ab01b6402fcd3fbd5a0c665893099e [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("//build/test/test_package.gni")
test("libc-test") {
sources = [ "libc.c" ]
deps = [
# For unittests of _impl.h headers.
"$zx/third_party/ulib/musl:musl_internal_testing",
]
}
test_package("libc-test-package") {
deps = [ ":libc-test" ]
package_name = "libc-test"
tests = [
{
name = "libc-test"
},
]
}
group("tests") {
testonly = true
deps = [ ":libc-test-package" ]
}