mirror of
https://github.com/google/santa.git
synced 2026-01-14 16:58:02 -05:00
23 lines
372 B
Python
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",
|
|
],
|
|
)
|