blob: de84824bbe88dc1c5267a187cab7aec67c7b52ea [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 = [
":blobfs-unit",
]
}
test("blobfs-unit") {
test_group = "fs"
sources = [
"allocated-extent-iterator-test.cpp",
"allocator-test.cpp",
"blob-cache-test.cpp",
"compressor-test.cpp",
"extent-reserver-test.cpp",
"get-allocated-regions-test.cpp",
"journal-test.cpp",
"node-populator-test.cpp",
"node-reserver-test.cpp",
"ring-buffer-test.cpp",
"unbuffered-operations-builder-test.cpp",
"utils.cpp",
"vector-extent-iterator-test.cpp",
"vmo-buffer-test.cpp",
"writeback-test.cpp",
]
deps = [
"$zx/system/ulib/blobfs",
"$zx/system/ulib/zxtest",
]
}