Fence installation transaction durability (T-613)

This commit is contained in:
ila
2026-07-18 16:28:49 +08:00
parent 84befee70f
commit 20596a7de4
18 changed files with 697 additions and 64 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build windows
package installer
import "testing"
func TestSyncDirectoryPath(t *testing.T) {
if err := syncDirectoryPath(t.TempDir()); err != nil {
t.Fatalf("syncDirectoryPath() error = %v", err)
}
}