blob: 3d038ad4cf9a0290ae74d973f52bf658b9a88117 [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 = [
":fvm-unit",
]
}
test("fvm-unit") {
sources = [
"format-info-test.cpp",
"partition-entry-test.cpp",
"slice-entry-test.cpp",
]
deps = [
"$zx/system/ulib/fvm",
"$zx/system/ulib/zxtest",
]
if (is_fuchsia) {
deps += [
"$zx/system/ulib/fdio",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
"$zx/system/ulib/zxcpp",
]
}
}