Skip to content

Commit c6c5c52

Browse files
committed
Add total pending statements count to next-test output
1 parent 6d2c236 commit c6c5c52

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

cmd/next-test/main.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,12 @@ func main() {
116116
}
117117
}
118118

119+
// Calculate total pending statements across all tests
120+
totalStatements := 0
121+
for _, t := range todoTests {
122+
totalStatements += t.explainTodoLen
123+
}
124+
119125
fmt.Printf("\nRemaining explain_todo tests: %d\n", len(todoTests))
126+
fmt.Printf("Total pending statements: %d\n", totalStatements)
120127
}

0 commit comments

Comments
 (0)