Commit 74fb6247 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 18584ab0
......@@ -240,6 +240,9 @@ func TestΔFtailRandom(t *testing.T) {
return vv[i:i+1]
}
testq := make(chan ΔFTestEntry)
go func() {
defer close(testq)
for i := 0; i < n; i++ {
nδblkTab := rng.Intn(10) // XXX -> to maxBlk ?
nδdataTab := rng.Intn(len(vv))
......@@ -261,9 +264,11 @@ func TestΔFtailRandom(t *testing.T) {
δdataTab.Add(v)
}
testq <- ΔFTestEntry{δblkTab, δdataTab}
}
}()
testΔFtail(t, testq)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment