Commit ca3e54e2 authored by Kirill Smelkov's avatar Kirill Smelkov

wcfs: zdata: ΔFtail tests: Fix/Adjust debug dump for computed blkRevAt

- put into if block to avoid collision with already-defined-elsewhere blkv
- show revisions in symbolic form

Noticed while working on recent change to allow ΔFtail/ΔBtail
point-queries with at=tail.
parent 769b1c06
...@@ -386,6 +386,7 @@ func testΔFtail(t_ *testing.T, testq chan ΔFTestEntry) { ...@@ -386,6 +386,7 @@ func testΔFtail(t_ *testing.T, testq chan ΔFTestEntry) {
} }
blkRevAt[commit.At] = blkRev blkRevAt[commit.At] = blkRev
/* /*
if false {
fmt.Printf("blkRevAt[@%s]:\n", commit.AtSymb()) fmt.Printf("blkRevAt[@%s]:\n", commit.AtSymb())
blkv := []int64{} blkv := []int64{}
for blk := range blkRev { for blk := range blkRev {
...@@ -395,8 +396,9 @@ func testΔFtail(t_ *testing.T, testq chan ΔFTestEntry) { ...@@ -395,8 +396,9 @@ func testΔFtail(t_ *testing.T, testq chan ΔFTestEntry) {
return blkv[i] < blkv[j] return blkv[i] < blkv[j]
}) })
for _, blk := range blkv { for _, blk := range blkv {
fmt.Printf(" #%d: %v\n", blk, blkRev[blk]) fmt.Printf(" #%d: @%s\n", blk, t.AtSymb(blkRev[blk]))
} }
}
*/ */
// update zfile // update zfile
......
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