Skip to content

Commit ba7650b

Browse files
authored
Merge pull request #344 from nathawes/update-stress-test-failures
[run_sk_stress_test] Update xfails for master
2 parents e61ff58 + 42e876a commit ba7650b

File tree

2 files changed

+27
-6
lines changed

2 files changed

+27
-6
lines changed

run_sk_stress_test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ class StressTesterRunner(object):
261261
if not os.path.isfile(results_path):
262262
return True
263263

264-
with open(results_path) as results_file:
265-
results = json.load(results_file)
264+
with open(results_path, 'rb') as results_file:
265+
results = json.load(results_file, encoding='utf-8')
266266

267267
num_failures = len(results['issues'])
268268
num_xfails = sum(len(value) for _, value in results['expectedIssues'].iteritems())

sourcekit-xfails.json

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,19 @@
251251
"offset" : 2423
252252
}
253253
},
254+
{
255+
"path" : "*\/DNS\/Sources\/DNS\/Types.swift",
256+
"modification" : "concurrent-1322",
257+
"issueDetail" : {
258+
"kind" : "semanticRefactoring",
259+
"refactoring" : "Local Rename",
260+
"offset" : 617
261+
},
262+
"applicableConfigs" : [
263+
"master"
264+
],
265+
"issueUrl" : "https://bugs.swift.org/browse/SR-9371"
266+
},
254267
{
255268
"path" : "*\/DNS\/Sources\/DNS\/Bytes.swift",
256269
"applicableConfigs" : [
@@ -266,7 +279,6 @@
266279
"path" : "*\/DNS\/Sources\/DNS\/Integer+Data.swift",
267280
"modification" : "concurrent-460",
268281
"applicableConfigs" : [
269-
"master",
270282
"swift-5.1-branch",
271283
"swift-5.0-branch"
272284
],
@@ -280,7 +292,6 @@
280292
"path" : "*\/DNS\/Sources\/DNS\/Message.swift",
281293
"modification" : "concurrent-9359",
282294
"applicableConfigs" : [
283-
"master",
284295
"swift-5.1-branch",
285296
"swift-5.0-branch"
286297
],
@@ -299,7 +310,6 @@
299310
"offset" : 1864
300311
},
301312
"applicableConfigs" : [
302-
"master",
303313
"swift-5.1-branch"
304314
],
305315
"issueUrl" : "https://bugs.swift.org/browse/SR-9371"
@@ -561,6 +571,18 @@
561571
],
562572
"issueUrl" : "https://bugs.swift.org/browse/SR-9371"
563573
},
574+
{
575+
"path" : "*\/Guitar\/Sources\/GuitarCase.swift",
576+
"modification" : "insideOut-2833",
577+
"issueDetail" : {
578+
"kind" : "codeComplete",
579+
"offset" : 2834
580+
},
581+
"applicableConfigs" : [
582+
"master"
583+
],
584+
"issueUrl" : "https://bugs.swift.org/browse/SR-9371"
585+
},
564586
{
565587
"path" : "*\/GRDB.swift\/GRDB\/Core\/Cursor.swift",
566588
"issueDetail" : {
@@ -1088,7 +1110,6 @@
10881110
"offset" : 1016
10891111
},
10901112
"applicableConfigs" : [
1091-
"master",
10921113
"swift-5.1-branch"
10931114
],
10941115
"issueUrl" : "https://bugs.swift.org/browse/SR-9371"

0 commit comments

Comments
 (0)