Skip to content

Commit c4a9136

Browse files
committed
[interop] benchmark - disable linux until #61547 is fixed
1 parent 5b88dc3 commit c4a9136

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

benchmark/cxx-source/CxxVectorSum.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ import TestsUtils
1717
import CxxStdlibPerformance
1818
import Cxx
1919

20+
// FIXME: Linux needs fix for https://github.com/apple/swift/issues/61547.
21+
#if os(Linux)
22+
public let benchmarks: [BenchmarkInfo] = []
23+
#else
2024
public let benchmarks = [
2125
BenchmarkInfo(
2226
name: "CxxVecU32.sum.Cxx.rangedForLoop",
@@ -122,3 +126,4 @@ public func run_CxxVectorOfU32_Sum_Swift_Reduce(_ n: Int) {
122126
extension VectorOfU32.const_iterator : Equatable, UnsafeCxxInputIterator { }
123127

124128
extension VectorOfU32: CxxSequence {}
129+
#endif

0 commit comments

Comments
 (0)