blob: 666ad9df37ac5e437b31eaf93aad529cfe1ea776 [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")
group("test") {
testonly = true
deps = [ ":minfs-allocator-unit" ]
}
test("minfs-allocator-unit") {
sources = [ "allocator_test.cc" ]
deps = [
"//src/lib/fxl/test:gtest_main",
"//src/storage/lib/block_client/cpp",
"//src/storage/minfs",
"//third_party/googletest:gtest",
"//zircon/system/ulib/bitmap",
]
}
fuchsia_unittest_component("minfs-allocator-test") {
deps = [ ":minfs-allocator-unit" ]
}
fuchsia_test_package("minfs-allocator-tests") {
test_components = [ ":minfs-allocator-test" ]
}