Skip to content

Commit 7cfdbf5

Browse files
committed
Disable on 6.2
1 parent 9ab77ee commit 7cfdbf5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/Testing/ABI/EntryPoints/Library.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,15 @@ private func testingLibraryDiscoverableAccessor(_ outValue: UnsafeMutableRawPoin
183183
// return true
184184
}
185185

186+
#if compiler(>=6.3)
186187
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS) || os(visionOS)
187188
@section("__DATA_CONST,__swift5_tests")
188189
#elseif os(Linux) || os(FreeBSD) || os(OpenBSD) || os(Android) || os(WASI)
189190
@section("swift5_tests")
190191
#elseif os(Windows)
191192
@section(".sw5test$B")
192193
#else
193-
@__testing(warning: "Platform-specific implementation missing: test content section name unavailable")
194+
//@__testing(warning: "Platform-specific implementation missing: test content section name unavailable")
194195
#endif
195196
@used
196197
private let testingLibraryRecord: __TestContentRecord = (
@@ -200,3 +201,4 @@ private let testingLibraryRecord: __TestContentRecord = (
200201
0,
201202
0
202203
)
204+
#endif

0 commit comments

Comments
 (0)