blob: df2c0981b195ba6c8798ad7ee45f9f4d3028b44b [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/components.gni")
import("//build/test.gni")
test("memfs") {
output_dir = "$root_out_dir/zircon-migrated"
output_name = "memfs-test"
sources = [
"fidl-tests.cc",
"vmofile-tests.cc",
]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_llcpp",
"//sdk/fidl/fuchsia.kernel:fuchsia.kernel_llcpp",
"//sdk/lib/fdio",
"//src/lib/storage/vfs/cpp",
"//src/storage/memfs",
"//src/storage/memfs:lib",
"//zircon/system/ulib/async",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fdio-caller",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/service:service-llcpp",
"//zircon/system/ulib/sync",
"//zircon/system/ulib/trace-engine",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("memfs-test") {
manifest = "meta/memfs-test.cml"
deps = [ ":memfs" ]
}
group("tests") {
testonly = true
public_deps = [ ":memfs-test" ]
}