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
|
"""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, size = "small"):
_syscall_test(test, size, "native")
_syscall_test(test, size, "kvm")
_syscall_test(test, size, "ptrace")
def _syscall_test(test, size, platform):
test_name = test.split(":")[1]
# Prepend "runsc" to non-native platform names.
full_platform = platform if platform == "native" else "runsc_" + platform
# Add the full_platform in a tag to make it easier to run all the tests on
# a specific platform.
tags = [full_platform]
# 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"]
sh_test(
srcs = ["syscall_test_runner.sh"],
name = test_name + "_" + full_platform,
data = [
":syscall_test",
test,
],
args = [
# First argument is location to syscall_test binary.
"$(location :syscall_test)",
# Rest of arguments are passed directly to syscall_test binary.
"--test-name=" + test_name,
"--platform=" + platform,
"--debug=false",
"--strace=false",
"--parallel=true",
],
size = size,
tags = tags,
)
def sh_test(**kwargs):
"""Wraps the standard sh_test."""
native.sh_test(
**kwargs
)
|