diff --git a/cmd/runtimetest/main.go b/cmd/runtimetest/main.go index 938fa2796..776f2125b 100644 --- a/cmd/runtimetest/main.go +++ b/cmd/runtimetest/main.go @@ -557,6 +557,11 @@ func validateMountsExist(spec *rspec.Spec) error { } for _, specMount := range spec.Mounts { + if specMount.Type == "bind" || specMount.Type == "rbind" { + // TODO: add bind or rbind check. + continue + } + found := false for _, sysMount := range mountsMap[filepath.Clean(specMount.Destination)] { if err := mountMatch(specMount, sysMount); err == nil {