@@ -1190,9 +1190,6 @@ def test_no_top_crashes(self):
1190
1190
cleanup .update_fuzz_blocker_label (self .policy , self .testcase , self .issue ,
1191
1191
top_crashes_by_project_and_platform_map )
1192
1192
self .assertNotIn (ISSUE_FUZZ_BLOCKER_LABEL , self .issue .labels )
1193
- self .assertNotIn (data_types .CHROMIUM_ISSUE_RELEASEBLOCK_BETA_LABEL ,
1194
- self .issue .labels )
1195
- self .assertNotIn ('M-63' , self .issue .labels )
1196
1193
self .assertEqual ('' , self .issue ._monorail_issue .comment )
1197
1194
1198
1195
def test_top_crashes_no_match (self ):
@@ -1210,9 +1207,6 @@ def test_top_crashes_no_match(self):
1210
1207
cleanup .update_fuzz_blocker_label (self .policy , self .testcase , self .issue ,
1211
1208
top_crashes_by_project_and_platform_map )
1212
1209
self .assertNotIn (ISSUE_FUZZ_BLOCKER_LABEL , self .issue .labels )
1213
- self .assertNotIn (data_types .CHROMIUM_ISSUE_RELEASEBLOCK_BETA_LABEL ,
1214
- self .issue .labels )
1215
- self .assertNotIn ('M-63' , self .issue .labels )
1216
1210
self .assertEqual ('' , self .issue ._monorail_issue .comment )
1217
1211
1218
1212
def test_top_crashes_with_testcase_closed (self ):
@@ -1233,9 +1227,6 @@ def test_top_crashes_with_testcase_closed(self):
1233
1227
cleanup .update_fuzz_blocker_label (self .policy , self .testcase , self .issue ,
1234
1228
top_crashes_by_project_and_platform_map )
1235
1229
self .assertNotIn (ISSUE_FUZZ_BLOCKER_LABEL , self .issue .labels )
1236
- self .assertNotIn (data_types .CHROMIUM_ISSUE_RELEASEBLOCK_BETA_LABEL ,
1237
- self .issue .labels )
1238
- self .assertNotIn ('M-63' , self .issue .labels )
1239
1230
self .assertEqual ('' , self .issue ._monorail_issue .comment )
1240
1231
1241
1232
def test_top_crashes_match_single_platform (self ):
@@ -1250,21 +1241,13 @@ def test_top_crashes_match_single_platform(self):
1250
1241
}]
1251
1242
}
1252
1243
}
1253
- self .issue .labels .add ('M-62' )
1254
1244
cleanup .update_fuzz_blocker_label (self .policy , self .testcase , self .issue ,
1255
1245
top_crashes_by_project_and_platform_map )
1256
1246
self .assertIn (ISSUE_FUZZ_BLOCKER_LABEL , self .issue .labels )
1257
- self .assertIn (data_types .CHROMIUM_ISSUE_RELEASEBLOCK_BETA_LABEL ,
1258
- self .issue .labels )
1259
- self .assertIn ('M-63' , self .issue .labels )
1260
- self .assertNotIn ('M-62' , self .issue .labels )
1261
1247
self .assertEqual (
1262
1248
'This crash occurs very frequently on linux platform and is likely '
1263
1249
'preventing the fuzzer fuzzer1 from making much progress. '
1264
- 'Fixing this will allow more bugs to be found.'
1265
- '\n \n Marking this bug as a blocker for next Beta release.'
1266
- '\n \n If this is incorrect, please add the ClusterFuzz-Wrong label and '
1267
- 'remove the ReleaseBlock-Beta label.' ,
1250
+ 'Fixing this will allow more bugs to be found.' ,
1268
1251
self .issue ._monorail_issue .comment )
1269
1252
1270
1253
def test_top_crashes_match_single_platform_oss_fuzz (self ):
@@ -1285,9 +1268,6 @@ def test_top_crashes_match_single_platform_oss_fuzz(self):
1285
1268
cleanup .update_fuzz_blocker_label (self .policy , self .testcase , self .issue ,
1286
1269
top_crashes_by_project_and_platform_map )
1287
1270
self .assertIn (ISSUE_FUZZ_BLOCKER_LABEL , self .issue .labels )
1288
- self .assertNotIn (data_types .CHROMIUM_ISSUE_RELEASEBLOCK_BETA_LABEL ,
1289
- self .issue .labels )
1290
- self .assertNotIn ('M-63' , self .issue .labels )
1291
1271
self .assertEqual (
1292
1272
'This crash occurs very frequently on linux platform and is likely '
1293
1273
'preventing the fuzzer fuzz_target1 from making much progress. '
@@ -1323,16 +1303,10 @@ def test_top_crashes_match_multiple_platforms(self):
1323
1303
cleanup .update_fuzz_blocker_label (self .policy , self .testcase , self .issue ,
1324
1304
top_crashes_by_project_and_platform_map )
1325
1305
self .assertIn (ISSUE_FUZZ_BLOCKER_LABEL , self .issue .labels )
1326
- self .assertIn (data_types .CHROMIUM_ISSUE_RELEASEBLOCK_BETA_LABEL ,
1327
- self .issue .labels )
1328
- self .assertIn ('M-63' , self .issue .labels )
1329
1306
self .assertEqual (
1330
1307
'This crash occurs very frequently on linux, mac and windows platforms '
1331
1308
'and is likely preventing the fuzzer fuzzer1 from making much '
1332
- 'progress. Fixing this will allow more bugs to be found.'
1333
- '\n \n Marking this bug as a blocker for next Beta release.'
1334
- '\n \n If this is incorrect, please add the ClusterFuzz-Wrong label and '
1335
- 'remove the ReleaseBlock-Beta label.' ,
1309
+ 'progress. Fixing this will allow more bugs to be found.' ,
1336
1310
self .issue ._monorail_issue .comment )
1337
1311
1338
1312
def test_top_crashes_match_and_label_removed (self ):
@@ -1355,9 +1329,6 @@ def test_top_crashes_match_and_label_removed(self):
1355
1329
cleanup .update_fuzz_blocker_label (self .policy , self .testcase , self .issue ,
1356
1330
top_crashes_by_project_and_platform_map )
1357
1331
self .assertNotIn (ISSUE_FUZZ_BLOCKER_LABEL , self .issue .labels )
1358
- self .assertNotIn (data_types .CHROMIUM_ISSUE_RELEASEBLOCK_BETA_LABEL ,
1359
- self .issue .labels )
1360
- self .assertNotIn ('M-63' , self .issue .labels )
1361
1332
self .assertEqual ('' , self .issue ._monorail_issue .comment )
1362
1333
1363
1334
0 commit comments