blob: a5dd3cb0608fefc8dfdd44088c43d4dcafce09f7 [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")
test("exception") {
output_name = "exception-test"
configs += [ "//build/config:all_source" ]
sources = [
"exception.cc",
"exception_to_string.cc",
]
deps = [
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/test-exceptions",
"//zircon/system/ulib/test-utils",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
bootfs_test("exception-bootfs-test") {
name = "exception-test"
deps = [ ":exception" ]
}