1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
diff --git a/testdata/benchmarks/data-throughput/main.go b/testdata/benchmarks/data-throughput/main.go
index 5713d01893bd02d96004ad1b3f1bcfb3024f31b8..bdedaec59b11b174f1e5cf56a4776018f281be9e 100644
--- a/testdata/benchmarks/data-throughput/main.go
+++ b/testdata/benchmarks/data-throughput/main.go
@@ -39,4 +39,5 @@ writer.Write([]byte{0x3D})
}
writer.Write([]byte{b})
}
+ writer.Flush()
}
diff --git a/testdata/benchmarks/data-throughput/patches/bootleg-simd.patch b/testdata/benchmarks/data-throughput/patches/bootleg-simd.patch
index 9568b0b0db68cd2523876dfa9f6392099466d048..c970fd744199e4760a54c15bf8eb6b1b88361867 100644
--- a/testdata/benchmarks/data-throughput/patches/bootleg-simd.patch
+++ b/testdata/benchmarks/data-throughput/patches/bootleg-simd.patch
@@ -33,4 +33,5 @@ + index = 0
}
- writer.Write([]byte{b})
}
+ writer.Flush()
}
|