blob: b7ef4395a9b33d28a3f16b63b04ae8906d111cf4 [file] [log] [blame]
# Copyright 2021 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")
import("//zircon/vdso/vdso.gni")
test("next-vdso") {
output_name = "next-vdso-test"
sources = [ "next-vdso.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("next-vdso-test-pkg") {
package_name = "next-vdso-test"
deps = [ ":next-vdso" ]
}
group("tests") {
testonly = true
if (!exclude_testonly_syscalls) {
deps = [ ":next-vdso-test-pkg" ]
}
}