Skip to content

Commit fb1e47d

Browse files
committed
Attempt N+1 at fixing Linux tests
1 parent 3387b65 commit fb1e47d

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

test/Interpreter/fractal.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
// RUN: %empty-directory(%t)
2-
// RUN: %target-build-swift %import-libdispatch -emit-library -o %t/%target-library-name(complex) -emit-module %S/complex.swift -module-link-name complex
2+
// RUN: %target-build-swift -Xfrontend -disable-implicit-concurrency-module-import -emit-library -o %t/%target-library-name(complex) -emit-module %S/complex.swift -module-link-name complex
33
// RUN: %target-jit-run %s -I %t -L %t | %FileCheck %s
44

55
// RUN: grep -v import %s > %t/main.swift
66
// RUN: %target-jit-run %t/main.swift %S/complex.swift | %FileCheck %s
77

88
// REQUIRES: executable_test
99
// REQUIRES: swift_interpreter
10-
// REQUIRES: libdispatch
1110

1211
import complex
1312

test/Interpreter/mandelbrot.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
// RUN: %empty-directory(%t)
2-
// RUN: %target-build-swift %import-libdispatch -emit-library -o %t/%target-library-name(complex) -emit-module %S/complex.swift -module-link-name complex
2+
// RUN: %target-build-swift -Xfrontend -disable-implicit-concurrency-module-import -emit-library -o %t/%target-library-name(complex) -emit-module %S/complex.swift -module-link-name complex
33
// RUN: %target-jit-run %s -I %t -L %t | %FileCheck %s
44

55
// RUN: grep -v import %s > %t/main.swift
66
// RUN: %target-jit-run %t/main.swift %S/complex.swift | %FileCheck %s
77

88
// REQUIRES: executable_test
99
// REQUIRES: swift_interpreter
10-
// REQUIRES: libdispatch
1110

1211
import complex
1312

validation-test/Sanitizers/fuzzer.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
// RUN: %target-build-swift %import-libdispatch -parse-as-library -sanitize=fuzzer %s -o %t
1+
// RUN: %target-build-swift -Xfrontend -disable-implicit-concurrency-module-import -parse-as-library -sanitize=fuzzer %s -o %t
22
// RUN: not %t -only_ascii=1 -max_len=3 | %FileCheck %s
33
// REQUIRES: CPU=x86_64
44
// REQUIRES: executable_test
55
// REQUIRES: fuzzer_runtime
6-
// REQUIRES: libdispatch
76

87
// XFAIL: OS=ios
98
// XFAIL: OS=tvos

0 commit comments

Comments
 (0)