Files
santa/Testing/integration/BUILD
Kent Ma 58cec5819a Add linter step with clang-format and buildifier. (#620)
Also lint our files accordingly
2021-10-01 16:51:06 -04:00

23 lines
372 B
Python

load("//:helper.bzl", "santa_unit_test")
licenses(["notice"])
santa_unit_test(
name = "SNTExecTest",
srcs = [
"SNTExecTest.m",
],
data = [
"//Source/santad/testdata:binaryrules_testdata",
],
minimum_os_version = "10.15",
deps = [],
)
test_suite(
name = "integration_tests",
tests = [
":SNTExecTest",
],
)