# Copyright 2022 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("//sdk/ctf/build/ctf.gni") | |
if (is_host) { | |
ctf_host_test("ffx_cts_test") { | |
binary_path = "$root_out_dir/ffx" | |
args = [ "version" ] | |
deps = [ "//src/developer/ffx:ffx_bin" ] | |
} | |
group("tests") { | |
testonly = true | |
deps = [ ":ffx_cts_test" ] | |
} | |
} |