-
Notifications
You must be signed in to change notification settings - Fork 21
/
BUILD
57 lines (50 loc) · 845 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
cc_library(
name = "subprocess",
srcs = ["subprocess.c"],
hdrs = ["subprocess.h"],
)
cc_library(
name = "tempdir",
srcs = ["tempdir.c"],
hdrs = ["tempdir.h"],
)
cc_binary(
name = "runalarm",
srcs = ["runalarm.c"],
deps = [":subprocess"],
)
cc_binary(
name = "runlock",
srcs = ["runlock.c"],
deps = [
":subprocess",
":tempdir",
],
)
cc_binary(
name = "runstat",
srcs = ["runstat.c"],
deps = [
":subprocess",
":tempdir",
],
)
filegroup(
name = "tests",
srcs = glob(["tests/*.sh"]),
)
filegroup(
name = "goldens",
srcs = glob(["tests/*.out"]),
)
sh_test(
name = "regtest",
srcs = ["regtest.sh"],
data = [
":goldens",
":runalarm",
":runlock",
":runstat",
":tests",
],
)