mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
22 lines
412 B
Python
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"],
|
|
)
|