blob: 913c2c650ead9f7d7efa277d4dd8df55408d9a7d [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.
group("test") {
testonly = true
deps = [
":fs-vnode",
]
}
test("fs-vnode") {
sources = [
"lazy-dir-tests.cpp",
"pseudo-dir-tests.cpp",
"pseudo-file-tests.cpp",
"remote-dir-tests.cpp",
"service-tests.cpp",
"teardown-tests.cpp",
"tracked-remote-dir-tests.cpp",
"vmo-file-tests.cpp",
]
deps = [
"$zx/system/fidl/fuchsia-io:c",
"$zx/system/ulib/async",
"$zx/system/ulib/async:async-cpp",
"$zx/system/ulib/async:async-default",
"$zx/system/ulib/async-loop",
"$zx/system/ulib/async-loop:async-loop-cpp",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fidl",
"$zx/system/ulib/fs",
"$zx/system/ulib/sync",
"$zx/system/ulib/trace",
"$zx/system/ulib/trace-engine",
"$zx/system/ulib/unittest",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
}