Skip to content

Commit

Permalink
Remove basic kola test info from kola.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam0Brien committed Aug 8, 2023
1 parent 2ab64bd commit af51c8b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
19 changes: 1 addition & 18 deletions gangplank/internal/spec/kola.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,7 @@ type kolaTests map[string]Stage

// kolaTestDefinitions contain a map of the kola tests.
var kolaTestDefinitions = kolaTests{
"basicBios": {
ID: "Kola Basic BIOS Test",
PostCommands: []string{"cosa kola run --qemu-nvme=true basic"},
RequireArtifacts: []string{"qemu"},
ExecutionOrder: 2,
},
"basicQemu": {
ID: "Kola Basic Qemu",
PostCommands: []string{"cosa kola --basic-qemu-scenarios"},
RequireArtifacts: []string{"qemu"},
ExecutionOrder: 2,
},
"basicUEFI": {
ID: "Basic UEFI Test",
PostCommands: []string{"cosa kola run --qemu-firmware=uefi basic"},
RequireArtifacts: []string{"qemu"},
ExecutionOrder: 2,
},

"external": {
ID: "Enternal Kola Test",
PostCommands: []string{"cosa kola run 'ext.*'"},
Expand Down
3 changes: 0 additions & 3 deletions mantle/kola/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,6 @@ func filterTests(tests map[string]*register.Test, patterns []string, pltfrm stri
if allowed, excluded := isAllowed(QEMUOptions.Firmware, t.Firmwares, t.ExcludeFirmwares); !allowed || excluded {
continue
}
if QEMUOptions.Nvme {
continue
}
}

// Check native tests for arch-specific and distro-specfic exclusion
Expand Down

0 comments on commit af51c8b

Please sign in to comment.