We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bdbdb90 + 39f3f74 commit 8a6d284Copy full SHA for 8a6d284
1 file changed
cmd/runtimetest/main.go
@@ -778,14 +778,17 @@ func run(context *cli.Context) error {
778
}
779
logrus.SetLevel(logLevel)
780
781
+ platform := runtime.GOOS
782
+ if platform != "linux" && platform != "solaris" && platform != "windows" {
783
+ return fmt.Errorf("runtime-tools has not implemented testing for your platform %q, because the spec has nothing to say about it", platform)
784
+ }
785
+
786
inputPath := context.String("path")
787
spec, err := loadSpecConfig(inputPath)
788
if err != nil {
789
return err
790
791
- platform := runtime.GOOS
-
792
defaultValidations := []validation{
793
{
794
test: validateRootFS,
0 commit comments