1 //go:build !linux 2 // +build !linux 3 4 package compactext4 5 6 import "testing" 7 8 func verifyTestFile(t *testing.T, mountPath string, tf testFile) { 9 t.Helper() 10 } 11 12 func mountImage(t *testing.T, image string, mountPath string) bool { 13 t.Helper() 14 return false 15 } 16 17 func unmountImage(t *testing.T, mountPath string) { 18 t.Helper() 19 } 20 21 func fsck(t *testing.T, image string) { 22 t.Helper() 23 } 24