blob: 647d54e474f2b5bb548cf5c21ea275356c649ad4 [file] [log] [blame]
# Copyright 2023 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")
group("tests") {
testonly = true
deps = [ ":job-with-available-exception-channel-test" ]
}
executable("bin") {
output_name = "job-with-available-exception-channel-test"
sources = [ "main.cc" ]
deps = [
"//src/lib/test-suite:test_suite_lib",
"//zircon/system/ulib/zx",
]
}
fuchsia_unittest_package("job-with-available-exception-channel-test") {
manifest = "meta/job-with-available-exception-channel-test.cml"
deps = [ ":bin" ]
}