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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
"""Defines a rule for syscall test targets."""
# syscall_test is a macro that will create targets to run the given test target
# on the host (native) and runsc.
def syscall_test(
test,
shard_count = 1,
size = "small",
use_tmpfs = False,
tags = None,
parallel = True):
_syscall_test(
test = test,
shard_count = shard_count,
size = size,
platform = "native",
use_tmpfs = False,
tags = tags,
parallel = parallel,
)
_syscall_test(
test = test,
shard_count = shard_count,
size = size,
platform = "kvm",
use_tmpfs = use_tmpfs,
tags = tags,
parallel = parallel,
)
_syscall_test(
test = test,
shard_count = shard_count,
size = size,
platform = "ptrace",
use_tmpfs = use_tmpfs,
tags = tags,
parallel = parallel,
)
if not use_tmpfs:
# Also test shared gofer access.
_syscall_test(
test = test,
shard_count = shard_count,
size = size,
platform = "ptrace",
use_tmpfs = use_tmpfs,
tags = tags,
parallel = parallel,
file_access = "shared",
)
def _syscall_test(
test,
shard_count,
size,
platform,
use_tmpfs,
tags,
parallel,
file_access = "exclusive"):
test_name = test.split(":")[1]
# Prepend "runsc" to non-native platform names.
full_platform = platform if platform == "native" else "runsc_" + platform
name = test_name + "_" + full_platform
if file_access == "shared":
name += "_shared"
if tags == None:
tags = []
# Add the full_platform and file access in a tag to make it easier to run
# all the tests on a specific flavor. Use --test_tag_filters=ptrace,file_shared.
tags += [full_platform, "file_" + file_access]
# Add tag to prevent the tests from running in a Bazel sandbox.
# TODO: Make the tests run without this tag.
tags.append("no-sandbox")
# TODO: KVM tests are tagged "manual" to until the platform is
# more stable.
if platform == "kvm":
tags += ["manual"]
args = [
# Arguments are passed directly to syscall_test_runner binary.
"--test-name=" + test_name,
"--platform=" + platform,
"--use-tmpfs=" + str(use_tmpfs),
"--file-access=" + file_access,
]
if parallel:
args += ["--parallel=true"]
sh_test(
srcs = ["syscall_test_runner.sh"],
name = name,
data = [
":syscall_test_runner",
test,
],
args = args,
size = size,
tags = tags,
shard_count = shard_count,
)
def sh_test(**kwargs):
"""Wraps the standard sh_test."""
native.sh_test(
**kwargs
)
|