blob: 447be161deedb7d00732685bedeab45869b43565 [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/unification/config:zircon-migrated",
"//build/config:all_source",
]
sources = [
"bad-handle.cc",
"ownership.cc",
"utils.cc",
]
deps = [
"//sdk/lib/fdio",
"//src/zircon/lib/zircon",
"//zircon/public/lib/fbl",
"//zircon/public/lib/zx",
"//zircon/public/lib/zxtest",
]
}
bootfs_test("futex-ownership-bootfs-test") {
name = "futex-ownership"
deps = [ ":futex-ownership" ]
}