Skip to content

Commit 258d2ce

Browse files
committed
Incorporate feedback
1 parent cacba25 commit 258d2ce

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

Documentation/Proposals/NNNN-json-abi.md

+5
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,11 @@ Package Manager:
204204
| `--event-stream-output` | File system path | Specifies a path to a file, named pipe, etc. to which output should be written. |
205205
| `--event-stream-version` | Integer | Specifies the version of the stable JSON schema to use for output. |
206206

207+
The process for adding arguments to Swift Package Manager is separate from the
208+
process for Swift Testing API changes, so the names of these arguments are
209+
speculative and are subject to change as part of the Swift Package Manager
210+
review process.
211+
207212
If `--configuration-path` is specified, Swift Testing will open it for reading
208213
and attempt to decode its contents as JSON. If `--event-stream-output` is
209214
specified, Swift Testing will open it for writing and will write a sequence of

Sources/Testing/CMakeLists.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
88

99
add_library(Testing
10-
EntryPoints/ABIEntryPoint.swift
11-
EntryPoints/ABIv0/ABIv0.Record.swift
12-
EntryPoints/ABIv0/ABIv0.Record+Streaming.swift
13-
EntryPoints/ABIv0/ABIv0.swift
14-
EntryPoints/ABIv0/Encoded/ABIv0.EncodedEvent.swift
15-
EntryPoints/ABIv0/Encoded/ABIv0.EncodedInstant.swift
16-
EntryPoints/ABIv0/Encoded/ABIv0.EncodedIssue.swift
17-
EntryPoints/ABIv0/Encoded/ABIv0.EncodedMessage.swift
18-
EntryPoints/ABIv0/Encoded/ABIv0.EncodedTest.swift
19-
EntryPoints/EntryPoint.swift
20-
EntryPoints/SwiftPMEntryPoint.swift
10+
ABI/EntryPoints/ABIEntryPoint.swift
11+
ABI/EntryPoints/EntryPoint.swift
12+
ABI/EntryPoints/SwiftPMEntryPoint.swift
13+
ABI/v0/ABIv0.Record.swift
14+
ABI/v0/ABIv0.Record+Streaming.swift
15+
ABI/v0/ABIv0.swift
16+
ABI/v0/Encoded/ABIv0.EncodedEvent.swift
17+
ABI/v0/Encoded/ABIv0.EncodedInstant.swift
18+
ABI/v0/Encoded/ABIv0.EncodedIssue.swift
19+
ABI/v0/Encoded/ABIv0.EncodedMessage.swift
20+
ABI/v0/Encoded/ABIv0.EncodedTest.swift
2121
Events/Clock.swift
2222
Events/Event.swift
2323
Events/Recorder/Event.ConsoleOutputRecorder.swift

0 commit comments

Comments
 (0)