Commit ab7f02b79a4d03761774aa7af72b5d405d6bd890

Parents: 227c27870266f26bb973e9bd5883cd8155a3084e

From: Moritz Poldrack <ich@moritz-poldrack.de>
Date: Tue May 18 23:38:04 2021 +0700

forgot to flush, how embarassing

		

Stats

testdata/benchmarks/data-throughput/main.go +1/-0
testdata/benchmarks/data-throughput/patches/bootleg-simd.patch +1/-0

Changeset

 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()
  }