-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathTEST_MAPPING
73 lines (69 loc) · 2.05 KB
/
TEST_MAPPING
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
// for frameworks/av/media
{
// TODO (b/229286407) Add EncodeDecodeTest and DecodeEditEncodeTest to
// presubmit-large once issues in cuttlefish are fixed
"presubmit": [
{
"name": "GtsMediaTestCases",
"options" : [
{
"include-annotation": "android.platform.test.annotations.Presubmit"
},
{
"include-filter": "com.google.android.media.gts.WidevineGenericOpsTests"
},
{
"include-filter": "com.google.android.media.gts.WidevineH264PlaybackTests"
}
]
}
],
"imports": [
{
"path": "frameworks/av/drm/mediadrm/plugins"
}
],
"platinum-postsubmit": [
// runs regularly, independent of changes in this tree.
// signals if changes elsewhere break media functionality
// @FlakyTest: in staged-postsubmit, but not postsubmit
{
"name": "CtsMediaCodecTestCases",
"options": [
{
"include-filter": "android.media.codec.cts.EncodeDecodeTest"
}
]
},
{
"name": "CtsMediaCodecTestCases",
"options": [
{
"include-filter": "android.media.codec.cts.DecodeEditEncodeTest"
},
{
"exclude-annotation": "androidx.test.filters.FlakyTest"
}
]
}
],
"staged-platinum-postsubmit": [
// runs every four hours
{
"name": "CtsMediaCodecTestCases",
"options": [
{
"include-filter": "android.media.codec.cts.EncodeDecodeTest"
}
]
},
{
"name": "CtsMediaCodecTestCases",
"options": [
{
"include-filter": "android.media.codec.cts.DecodeEditEncodeTest"
}
]
}
]
}