Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Avoid accidental use of #_sourceLocation in the library target.
We can't use our own macros in the library target directly. Resolves rdar://136385550.
  • Loading branch information
grynspan committed Sep 21, 2024
commit 3838a9c2020536f8dc9fb1bf80c3fa2bacd552e6
4 changes: 2 additions & 2 deletions Sources/Testing/ExitTests/ExitTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ extension ExitTest {
} catch {
// NOTE: an error caught here indicates an I/O problem.
// TODO: should we record these issues as systemic instead?
Issue.record(error)
Issue(for: error).record()
return
}

Expand All @@ -482,7 +482,7 @@ extension ExitTest {
} catch {
// NOTE: an error caught here indicates a decoding problem.
// TODO: should we record these issues as systemic instead?
Issue.record(error)
Issue(for: error).record()
}
}
}
Expand Down