Skip to content

Commit b9ec29f

Browse files
Relax the peak memory resident threshold for WishYouWereFast
1 parent 043456b commit b9ec29f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Benchmarks/Benchmarks/WishYouWereFast/WishYouWereFast.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ let benchmarks = {
2222
atPath: wishYouWereFast.path
2323
) {
2424
guard file.hasSuffix(".wasm") else { continue }
25-
Benchmark("\(file)") { benchmark in
25+
Benchmark("\(file)", configuration: .init(thresholds: [
26+
.peakMemoryResident: .relaxed,
27+
.peakMemoryResidentDelta: .relaxed,
28+
])) { benchmark in
2629
let engine = Engine()
2730
let store = Store(engine: engine)
2831
let module = try parseWasm(

0 commit comments

Comments
 (0)