From b1fedf8ca4d1b876a0aeda7a5cbbdff5a3eaf401 Mon Sep 17 00:00:00 2001 From: Jonathan Grynspan Date: Thu, 25 Sep 2025 11:17:13 -0400 Subject: [PATCH] Remove `@_spi(Experimental)` from `ExitTest.CapturedValue`. These symbols should be `@_spi(ForToolsIntegrationOnly)` but are no longer considered experimental. --- Sources/Testing/ExitTests/ExitTest.CapturedValue.swift | 2 +- Sources/Testing/ExitTests/ExitTest.Condition.swift | 1 - Sources/Testing/ExitTests/ExitTest.swift | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Sources/Testing/ExitTests/ExitTest.CapturedValue.swift b/Sources/Testing/ExitTests/ExitTest.CapturedValue.swift index 867fdecc5..c311978a8 100644 --- a/Sources/Testing/ExitTests/ExitTest.CapturedValue.swift +++ b/Sources/Testing/ExitTests/ExitTest.CapturedValue.swift @@ -10,7 +10,7 @@ private import _TestingInternals -@_spi(Experimental) @_spi(ForToolsIntegrationOnly) +@_spi(ForToolsIntegrationOnly) #if SWT_NO_EXIT_TESTS @available(*, unavailable, message: "Exit tests are not available on this platform.") #endif diff --git a/Sources/Testing/ExitTests/ExitTest.Condition.swift b/Sources/Testing/ExitTests/ExitTest.Condition.swift index 0a23bf47c..fd3f3680c 100644 --- a/Sources/Testing/ExitTests/ExitTest.Condition.swift +++ b/Sources/Testing/ExitTests/ExitTest.Condition.swift @@ -176,7 +176,6 @@ extension ExitTest.Condition { // MARK: - CustomStringConvertible -@_spi(Experimental) #if SWT_NO_EXIT_TESTS @available(*, unavailable, message: "Exit tests are not available on this platform.") #endif diff --git a/Sources/Testing/ExitTests/ExitTest.swift b/Sources/Testing/ExitTests/ExitTest.swift index ef37c4bd9..cec43a6ce 100644 --- a/Sources/Testing/ExitTests/ExitTest.swift +++ b/Sources/Testing/ExitTests/ExitTest.swift @@ -128,7 +128,7 @@ public struct ExitTest: Sendable, ~Copyable { /// /// The order of values in this array must be the same between the parent and /// child processes. - @_spi(Experimental) @_spi(ForToolsIntegrationOnly) + @_spi(ForToolsIntegrationOnly) public var capturedValues = [CapturedValue]() /// Make a copy of this instance.