fix test compilation

This commit is contained in:
chrislu 2022-12-23 10:40:27 -08:00
parent b7d30812fc
commit b9539bc628

View file

@ -31,14 +31,14 @@ func writeRange(uploadPipeline *UploadPipeline, startOff, stopOff int64) {
p := make([]byte, 4) p := make([]byte, 4)
for i := startOff / 4; i < stopOff/4; i += 4 { for i := startOff / 4; i < stopOff/4; i += 4 {
util.Uint32toBytes(p, uint32(i)) util.Uint32toBytes(p, uint32(i))
uploadPipeline.SaveDataAt(p, i, false) uploadPipeline.SaveDataAt(p, i, false, 0)
} }
} }
func confirmRange(t *testing.T, uploadPipeline *UploadPipeline, startOff, stopOff int64) { func confirmRange(t *testing.T, uploadPipeline *UploadPipeline, startOff, stopOff int64) {
p := make([]byte, 4) p := make([]byte, 4)
for i := startOff; i < stopOff/4; i += 4 { for i := startOff; i < stopOff/4; i += 4 {
uploadPipeline.MaybeReadDataAt(p, i) uploadPipeline.MaybeReadDataAt(p, i, 0)
x := util.BytesToUint32(p) x := util.BytesToUint32(p)
if x != uint32(i) { if x != uint32(i) {
t.Errorf("expecting %d found %d at offset [%d,%d)", i, x, i, i+4) t.Errorf("expecting %d found %d at offset [%d,%d)", i, x, i, i+4)