@@ -23,6 +23,8 @@ import XCTest
23
23
class PluginTests : XCTestCase {
24
24
25
25
func testUseOfBuildToolPluginTargetByExecutableInSamePackage( ) throws {
26
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
27
+
26
28
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
27
29
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
28
30
@@ -36,6 +38,8 @@ class PluginTests: XCTestCase {
36
38
}
37
39
38
40
func testUseOfBuildToolPluginProductByExecutableAcrossPackages( ) throws {
41
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
42
+
39
43
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
40
44
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
41
45
@@ -49,6 +53,8 @@ class PluginTests: XCTestCase {
49
53
}
50
54
51
55
func testUseOfPrebuildPluginTargetByExecutableAcrossPackages( ) throws {
56
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
57
+
52
58
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
53
59
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
54
60
@@ -62,6 +68,8 @@ class PluginTests: XCTestCase {
62
68
}
63
69
64
70
func testUseOfPluginWithInternalExecutable( ) throws {
71
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
72
+
65
73
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
66
74
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
67
75
@@ -90,6 +98,8 @@ class PluginTests: XCTestCase {
90
98
}
91
99
92
100
func testLocalBuildToolPluginUsingRemoteExecutable( ) throws {
101
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
102
+
93
103
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
94
104
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
95
105
@@ -103,7 +113,9 @@ class PluginTests: XCTestCase {
103
113
}
104
114
}
105
115
106
- func testBuildToolPluginDependencies( ) throws {
116
+ func testBuildToolPluginDependencies( ) throws {
117
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
118
+
107
119
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
108
120
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
109
121
@@ -118,6 +130,8 @@ class PluginTests: XCTestCase {
118
130
}
119
131
120
132
func testContrivedTestCases( ) throws {
133
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
134
+
121
135
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
122
136
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
123
137
@@ -131,6 +145,8 @@ class PluginTests: XCTestCase {
131
145
}
132
146
133
147
func testPluginScriptSandbox( ) throws {
148
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
149
+
134
150
#if !os(macOS)
135
151
try XCTSkipIf ( true , " test is only supported on macOS " )
136
152
#endif
@@ -144,6 +160,8 @@ class PluginTests: XCTestCase {
144
160
}
145
161
146
162
func testUseOfVendedBinaryTool( ) throws {
163
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
164
+
147
165
#if !os(macOS)
148
166
try XCTSkipIf ( true , " test is only supported on macOS " )
149
167
#endif
@@ -157,6 +175,8 @@ class PluginTests: XCTestCase {
157
175
}
158
176
159
177
func testUseOfBinaryToolVendedAsProduct( ) throws {
178
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
179
+
160
180
#if !os(macOS)
161
181
try XCTSkipIf ( true , " test is only supported on macOS " )
162
182
#endif
@@ -944,6 +964,8 @@ class PluginTests: XCTestCase {
944
964
}
945
965
946
966
func testSandboxViolatingBuildToolPluginCommands( ) throws {
967
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
968
+
947
969
#if !os(macOS)
948
970
try XCTSkipIf ( true , " sandboxing tests are only supported on macOS " )
949
971
#endif
@@ -967,6 +989,8 @@ class PluginTests: XCTestCase {
967
989
}
968
990
969
991
func testTransitivePluginOnlyDependency( ) throws {
992
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
993
+
970
994
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
971
995
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
972
996
@@ -992,6 +1016,8 @@ class PluginTests: XCTestCase {
992
1016
}
993
1017
994
1018
func testPluginCanBeReferencedByProductName( ) throws {
1019
+ throw XCTSkip ( " disabled because this test does not work with verbose logging turned on " )
1020
+
995
1021
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
996
1022
try XCTSkipIf ( !UserToolchain. default. supportsSwiftConcurrency ( ) , " skipping because test environment doesn't support concurrency " )
997
1023
0 commit comments