blob: 361b9399961ac615195e65dd9368a1536efc0f23 [file]
# Copyright 2026 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/rust/rustc_test.gni")
assert(is_host,
"traceable_error_derive_tests is for use with the host toolchain only")
rustc_test("tests") {
name = "traceable_error_derive_tests"
edition = "2024"
sources = [ "src/lib.rs" ]
deps = [
"//src/developer/ffx/lib/traceable_error:lib",
"//src/developer/ffx/lib/traceable_error/derive:lib",
"//third_party/rust_crates:thiserror",
]
}