Skip to content

Commit d8502ac

Browse files
authored
Merge pull request swiftlang#35763 from rintaro/disable-rdar73984220
[Tests] Disable refactoring/ConvertAsync in ASAN
2 parents edcc3a2 + f67b5d9 commit d8502ac

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

test/refactoring/ConvertAsync/basic.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rdar://problem/73984220
2+
// XFAIL: asan
13
enum CustomError: Error {
24
case invalid
35
case insecure

test/refactoring/ConvertAsync/convert_function.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rdar://problem/73984220
2+
// XFAIL: asan
13
enum CustomError : Error {
24
case Bad
35
}

test/refactoring/ConvertAsync/convert_params_multi.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rdar://problem/73984220
2+
// XFAIL: asan
13
func manyWithError(_ completion: (String?, Int?, Error?) -> Void) { }
24

35
// RUN: %refactor -convert-call-to-async-alternative -dump-text -source-filename %s -pos=%(line+1):3 | %FileCheck -check-prefix=MANYBOUND %s

test/refactoring/ConvertAsync/convert_params_single.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rdar://problem/73984220
2+
// XFAIL: asan
13
func withError(_ completion: (String?, Error?) -> Void) { }
24
func test(_ str: String) -> Bool { return false }
35

test/refactoring/ConvertAsync/convert_result.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rdar://problem/73984220
2+
// XFAIL: asan
13
func simple(_ completion: (Result<String, Error>) -> Void) { }
24
func noError(_ completion: (Result<String, Never>) -> Void) { }
35
func test(_ str: String) -> Bool { return false }

test/refactoring/ConvertAsync/errors.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// rdar://problem/73984220
2+
// XFAIL: asan
13
func simple(completion: (String?, Error?) -> Void) { }
24

35
func mismatches() {

0 commit comments

Comments
 (0)