blob: 4f7aac4392e94b96c0161af1b2d8d9e2270912ca [file] [log] [blame]
# Copyright 2018 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/test_package.gni")
import("//build/testing/environments.gni")
group("tests") {
testonly = true
deps = [
":logger_integration_tests",
"cpp",
"go",
"rust",
]
}
test_package("logger_integration_tests") {
deps = [
"cpp:logger_integration_cpp_tests",
"go/src:logger_integration_go_tests",
"rust:bin",
]
tests = [
{
name = "logger_integration_go_tests"
environments = basic_envs
},
{
name = "logger_integration_bin_test"
environments = basic_envs
},
{
name = "logger_integration_cpp_tests"
environments = basic_envs
},
]
}