Skip gc enginetest

This commit is contained in:
Taylor Bantle
2022-11-21 10:26:41 -08:00
parent f35f5c2e3f
commit 1c3fcbe5a1
@@ -973,13 +973,14 @@ func TestDoltReset(t *testing.T) {
}
}
// TODO: This does not work because `db.chunkStore().(nbs.TableFileStore)`
// returns not ok in PruneTableFiles
// func TestDoltGC(t *testing.T) {
// for _, script := range DoltGC {
// enginetest.TestScript(t, newDoltHarness(t), script)
// }
// }
func TestDoltGC(t *testing.T) {
// TODO: This does not work because `db.chunkStore().(nbs.TableFileStore)`
// returns not ok in PruneTableFiles
t.Skip()
for _, script := range DoltGC {
enginetest.TestScript(t, newDoltHarness(t), script)
}
}
func TestDoltBranch(t *testing.T) {
for _, script := range DoltBranchScripts {