@@ -53,6 +53,7 @@ public void testEquality() throws Exception {
53
53
ImmutableList .of (),
54
54
PathFragment .EMPTY_FRAGMENT ,
55
55
ImmutableList .of (),
56
+ ImmutableList .of (),
56
57
false ,
57
58
true ,
58
59
null ,
@@ -62,6 +63,7 @@ public void testEquality() throws Exception {
62
63
ImmutableList .of (),
63
64
PathFragment .EMPTY_FRAGMENT ,
64
65
ImmutableList .of (),
66
+ ImmutableList .of (),
65
67
false ,
66
68
false ,
67
69
null ,
@@ -71,6 +73,7 @@ public void testEquality() throws Exception {
71
73
ImmutableList .of (),
72
74
PathFragment .EMPTY_FRAGMENT ,
73
75
ImmutableList .of (),
76
+ ImmutableList .of (),
74
77
true ,
75
78
true ,
76
79
null ,
@@ -80,6 +83,7 @@ public void testEquality() throws Exception {
80
83
ImmutableList .of (),
81
84
PathFragment .EMPTY_FRAGMENT ,
82
85
ImmutableList .of (),
86
+ ImmutableList .of (),
83
87
true ,
84
88
false ,
85
89
null ,
@@ -89,6 +93,7 @@ public void testEquality() throws Exception {
89
93
ImmutableList .of (),
90
94
PathFragment .EMPTY_FRAGMENT ,
91
95
ImmutableList .of (),
96
+ ImmutableList .of (),
92
97
false ,
93
98
true ,
94
99
emptyTestFilter (),
@@ -98,6 +103,7 @@ public void testEquality() throws Exception {
98
103
ImmutableList .of (),
99
104
PathFragment .EMPTY_FRAGMENT ,
100
105
ImmutableList .of (),
106
+ ImmutableList .of (),
101
107
true ,
102
108
true ,
103
109
emptyTestFilter (),
@@ -107,6 +113,7 @@ public void testEquality() throws Exception {
107
113
ImmutableList .of (),
108
114
PathFragment .EMPTY_FRAGMENT ,
109
115
ImmutableList .of (),
116
+ ImmutableList .of (),
110
117
false ,
111
118
true ,
112
119
emptyTestFilter (),
@@ -116,6 +123,7 @@ public void testEquality() throws Exception {
116
123
ImmutableList .of (),
117
124
PathFragment .EMPTY_FRAGMENT ,
118
125
ImmutableList .of (),
126
+ ImmutableList .of (),
119
127
true ,
120
128
true ,
121
129
emptyTestFilter (),
@@ -125,6 +133,7 @@ public void testEquality() throws Exception {
125
133
ImmutableList .of (),
126
134
PathFragment .EMPTY_FRAGMENT ,
127
135
ImmutableList .of ("a" ),
136
+ ImmutableList .of ("a" ),
128
137
false ,
129
138
true ,
130
139
null ))
@@ -133,6 +142,7 @@ public void testEquality() throws Exception {
133
142
ImmutableList .of (),
134
143
PathFragment .EMPTY_FRAGMENT ,
135
144
ImmutableList .of ("a" ),
145
+ ImmutableList .of ("a" ),
136
146
true ,
137
147
true ,
138
148
null ))
@@ -143,6 +153,7 @@ private static TargetPatternPhaseKey of(
143
153
ImmutableList <String > targetPatterns ,
144
154
PathFragment offset ,
145
155
ImmutableList <String > buildTagFilter ,
156
+ ImmutableList <String > buildRuleFilter ,
146
157
boolean includeManualTests ,
147
158
boolean expandTestSuites ,
148
159
@ Nullable TestFilter testFilter ,
@@ -158,14 +169,15 @@ private static TargetPatternPhaseKey of(
158
169
buildTestsOnly ,
159
170
determineTests ,
160
171
buildTagFilter ,
172
+ buildRuleFilter ,
161
173
includeManualTests ,
162
174
expandTestSuites ,
163
175
testFilter );
164
176
}
165
177
166
178
private static TargetPatternPhaseKey of (
167
179
ImmutableList <String > targetPatterns , PathFragment offset ) {
168
- return of (targetPatterns , offset , ImmutableList .of (), false , true , null );
180
+ return of (targetPatterns , offset , ImmutableList .of (), ImmutableList . of (), false , true , null );
169
181
}
170
182
171
183
private static TestFilter emptyTestFilter () {
0 commit comments