blob: d5a06a0a40b4755f234def359666eb8877a92559 [file] [log] [blame]
# Copyright 2020 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")
test("running_on_bootfs_test") {
testonly = true
output_name = "running-on-bootfs-test"
sources = [ "running_on_bootfs_test.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/zxtest",
]
}
# Note: this test should end up in /boot, which means the cmx produced here is
# irrelevant, however, we don't allow bare tests in packages anymore, so the
# cmx production avoids needing a very specialized exception for this case.
bootfs_test("running-on-bootfs-test") {
name = "running-on-bootfs-test"
deps = [ ":running_on_bootfs_test" ]
}