blob: 41b1e77c00a99d372f644f60a599c001250799ab [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
import("//build/testing/mexec_zbi_test.gni")
import("//build/testing/zircon_zbi_tests.gni")
import("common_tests.gni")
# We create mexec-chainloading variations of all of the phys ZBI tests.
# Once there is no longer a separate zircon build, we can define these targets
# directly, instead of sifting through zircon's zbi_tests.json to synthesize
# targets in this build.
test_deps = []
foreach(test, zircon_zbi_tests) {
# The ZBI test names prepend a "zbi-" to the common_test names.
name = string_replace(test.name, "zbi-", "")
if (test.cpu == current_cpu &&
common_tests + [ name ] - [ name ] != common_tests) {
# `mexec_zbi_test` expects a label to which `get_target_outputs` may be
# applied to get a hold of the path to the child ZBI. Once the phys ZBI
# tests are moved to the fuchsia build, we can skip the copy rule and just
# supply the `zbi_test` labels directly.
copy(name) {
sources = [ "$zircon_root_build_dir/${test.path}" ]
outputs = [ "$target_out_dir/{{source_file_part}}" ]
}
mexec_zbi_test("mexec-$name") {
child_zbi = ":$name"
}
test_deps += [ ":mexec-$name" ]
}
}
group("test") {
testonly = true
deps = test_deps
}