blob: f905f6f5933f07094c2f8c78ebadfdcb7371fd05 [file] [log] [blame]
# Copyright 2019 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/testing/bootfs_test.gni")
test("futex-ownership") {
configs += [ "//build/config:all_source" ]
sources = [
"bad-handle.cc",
"ownership.cc",
"utils.cc",
]
deps = [
"//sdk/lib/fdio",
"//sdk/lib/stdcompat",
"//src/zircon/lib/zircon",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
bootfs_test("futex-ownership-bootfs-test") {
name = "futex-ownership"
deps = [ ":futex-ownership" ]
}