blob: ab63bb86660f458dc9ced02150bc6322fe557dd4 [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/test.gni")
import("//build/testing/bootfs_test.gni")
group("test") {
testonly = true
deps = [ ":test-utils" ]
}
test("test-utils") {
output_name = "test-utils-test"
sources = [ "test-utils-test.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/test-utils",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
bootfs_test("test-utils-bootfs-test") {
name = "test-utils-test"
deps = [ ":test-utils" ]
}