Files
codeql/swift/logging/tests/assertion-diagnostics/BUILD.bazel
2024-03-25 11:49:19 +01:00

22 lines
412 B
Python

load("//swift:rules.bzl", "swift_cc_binary")
swift_cc_binary(
name = "assert-false",
srcs = ["AssertFalse.cpp"],
visibility = ["//swift:__pkg__"],
deps = [
"//swift/logging",
],
)
py_test(
name = "test",
size = "small",
srcs = ["test.py"],
data = [
"diagnostics.expected",
":assert-false",
],
deps = ["//swift/ql/integration-tests:utils"],
)