blob: e4be66fe7c40d6d7a31e7ecede3582f5be498a21 [file] [log] [blame]
# Copyright 2020 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/package.gni")
import("//build/test.gni")
import("//src/sys/build/components.gni")
test("stream_cpp_unittests") {
sources = [ "log_message_unittest.cc" ]
deps = [
"//garnet/public/lib/gtest",
"//sdk/lib/stdcompat",
"//src/lib/diagnostics/stream/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock",
]
}
fuchsia_unittest_package("stream-cpp-tests") {
deps = [ ":stream_cpp_unittests" ]
test_specs = {
log_settings = {
max_severity = "ERROR"
}
}
}
group("tests") {
testonly = true
deps = [ ":stream-cpp-tests" ]
}