blob: b6aa685f9583e154774a519e49d23e082e5534f5 [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.
source_set("handle-dup") {
testonly = true
sources = [ "handle-dup.cc" ]
deps = [
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
# Need to disable null checks as we are going to pass nullptrs to functions that say they don't
# take nullptrs
public_configs = [ ":no_nonnull" ]
}
config("no_nonnull") {
cflags = [ "-Wno-nonnull" ]
}