blob: 92b0b5fc00ae5fbf5129650e465904c58a9d80cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"""List of platforms."""
# Platform to associated tags.
platforms = {
"ptrace": [
# TODO(b/120560048): Make the tests run without this tag.
"no-sandbox",
],
"kvm": [
"manual",
"local",
# TODO(b/120560048): Make the tests run without this tag.
"no-sandbox",
],
}
default_platform = "ptrace"
|