@@ -26,7 +26,7 @@ public let benchmarks = [
26
26
BenchmarkInfo ( name: " ArrayAppendGenericStructs " , runFunction: run_ArrayAppendGenericStructs, tags: t,
27
27
setUpFunction: { otherStructs = Array ( repeating: S ( x: 3 , y: 4.2 ) , count: 10_000 ) } ,
28
28
tearDownFunction: { otherStructs = nil } , legacyFactor: 10 ) ,
29
- BenchmarkInfo ( name: " ArrayAppendLatin1 " , runFunction: run_ArrayAppendLatin1, tags: t, legacyFactor: 34 ) ,
29
+ BenchmarkInfo ( name: " ArrayAppendLatin1 " , runFunction: run_ArrayAppendLatin1, tags: t + [ . skip ] , legacyFactor: 34 ) ,
30
30
BenchmarkInfo ( name: " ArrayAppendLatin1Substring " , runFunction: run_ArrayAppendLatin1Substring, tags: t, legacyFactor: 36 ) ,
31
31
BenchmarkInfo ( name: " ArrayAppendLazyMap " , runFunction: run_ArrayAppendLazyMap, tags: t,
32
32
setUpFunction: { blackHole ( array) } , legacyFactor: 10 ) ,
@@ -39,15 +39,15 @@ public let benchmarks = [
39
39
BenchmarkInfo ( name: " ArrayAppendStrings " , runFunction: run_ArrayAppendStrings, tags: t,
40
40
setUpFunction: { otherStrings = stride ( from: 0 , to: 10_000 , by: 1 ) . map { " \( $0) " } } ,
41
41
tearDownFunction: { otherStrings = nil } , legacyFactor: 10 ) ,
42
- BenchmarkInfo ( name: " ArrayAppendToFromGeneric " , runFunction: run_ArrayAppendToFromGeneric, tags: t,
42
+ BenchmarkInfo ( name: " ArrayAppendToFromGeneric " , runFunction: run_ArrayAppendToFromGeneric, tags: t + [ . skip ] ,
43
43
setUpFunction: ones, tearDownFunction: releaseOnes, legacyFactor: 10 ) ,
44
44
BenchmarkInfo ( name: " ArrayAppendToGeneric " , runFunction: run_ArrayAppendToGeneric, tags: t,
45
45
setUpFunction: ones, tearDownFunction: releaseOnes, legacyFactor: 10 ) ,
46
- BenchmarkInfo ( name: " ArrayAppendUTF16 " , runFunction: run_ArrayAppendUTF16, tags: t, legacyFactor: 34 ) ,
46
+ BenchmarkInfo ( name: " ArrayAppendUTF16 " , runFunction: run_ArrayAppendUTF16, tags: t + [ . skip ] , legacyFactor: 34 ) ,
47
47
BenchmarkInfo ( name: " ArrayAppendUTF16Substring " , runFunction: run_ArrayAppendUTF16Substring, tags: t, legacyFactor: 36 ) ,
48
48
BenchmarkInfo ( name: " ArrayPlusEqualArrayOfInt " , runFunction: run_ArrayPlusEqualArrayOfInt, tags: t + [ . unstable] ,
49
49
setUpFunction: ones, tearDownFunction: releaseOnes, legacyFactor: 10 ) ,
50
- BenchmarkInfo ( name: " ArrayPlusEqualFiveElementCollection " , runFunction: run_ArrayPlusEqualFiveElementCollection, tags: t, legacyFactor: 37 ) ,
50
+ BenchmarkInfo ( name: " ArrayPlusEqualFiveElementCollection " , runFunction: run_ArrayPlusEqualFiveElementCollection, tags: t + [ . skip ] , legacyFactor: 37 ) ,
51
51
BenchmarkInfo ( name: " ArrayPlusEqualSingleElementCollection " , runFunction: run_ArrayPlusEqualSingleElementCollection, tags: t, legacyFactor: 47 ) ,
52
52
BenchmarkInfo ( name: " ArrayPlusEqualThreeElements " , runFunction: run_ArrayPlusEqualThreeElements, tags: t, legacyFactor: 10 ) ,
53
53
]
0 commit comments