[NFC] Migrate remnant Jira issue references to GitHub issues

This commit is contained in:
Anthony Latsis
2022-12-02 05:30:54 +03:00
parent cef0158a15
commit 4cb63c8a0f
24 changed files with 45 additions and 41 deletions

View File

@@ -55,7 +55,7 @@ public func bufferFillFromSliceTeardown() {
public func bufferFillFromSliceExecute(n: Int) {
// Measure performance when filling an UnsafeBuffer from a Slice
// of a Collection that supports `withContiguousStorageIfAvailable`
// See: https://bugs.swift.org/browse/SR-14491
// See: https://github.com/apple/swift/issues/56846
for _ in 0..<n {
let slice = Slice(base: a, bounds: a.indices)
@@ -87,7 +87,7 @@ public func rawBufferCopyBytesTeardown() {
public func rawBufferCopyBytesExecute(n: Int) {
// Measure performance when copying bytes into an UnsafeRawBuffer
// from a Collection that supports `withContiguousStorageIfAvailable`
// See: https://bugs.swift.org/browse/SR-14886
// See: https://github.com/apple/swift/issues/57233
for _ in 0..<n {
rb.copyBytes(from: ra)
@@ -112,7 +112,7 @@ public func rawBufferInitializeMemoryTeardown() {
public func rawBufferInitializeMemoryExecute(n: Int) {
// Measure performance when initializing an UnsafeRawBuffer
// from a Collection that supports `withContiguousStorageIfAvailable`
// See: https://bugs.swift.org/browse/SR-14982
// See: https://github.com/apple/swift/issues/57324
for _ in 0..<n {
var (iterator, initialized) = rb.initializeMemory(as: Int.self, from: a)
@@ -154,7 +154,7 @@ public func rawBufferCopyContentsTeardown() {
public func rawBufferCopyContentsExecute(n: Int) {
// Measure performance of copying bytes from an
// `UnsafeRawBufferPointer` to an `UnsafeMutableBufferPointer<UInt8>`.
// See: https://bugs.swift.org/browse/SR-9604
// See: https://github.com/apple/swift/issues/52050
for _ in 0..<n {
var (iterator, initialized) = b8.initialize(from: r8)

View File

@@ -13,7 +13,7 @@
// This benchmark checks for quadratic behavior while copying elements in hash
// order between Dictionaries of decreasing capacity
//
// https://bugs.swift.org/browse/SR-3268
// https://github.com/apple/swift/issues/45856
import TestsUtils