780a9afbba
The testsuite covers guided installation on multiple devices. TODO: change from VirtIO to SATA driver
60 lines
2.0 KiB
Plaintext
Executable File
60 lines
2.0 KiB
Plaintext
Executable File
#!/usr/share/openqa/script/load_templates
|
|
#
|
|
# openSUSE Machines, Products, TestSuites and JobTemplates
|
|
#
|
|
# use load_templates to load the file into the database
|
|
#
|
|
{
|
|
JobTemplates => [
|
|
{
|
|
machine => { name => "64bit" },
|
|
product => {
|
|
arch => "x86_64",
|
|
distri => "fedora",
|
|
flavor => "server",
|
|
version => "rawhide",
|
|
},
|
|
test_suite => { name => "server_simple" },
|
|
},
|
|
],
|
|
Machines => [
|
|
{
|
|
backend => "qemu",
|
|
name => "64bit",
|
|
settings => [{ key => "QEMUCPU", value => "qemu64" }],
|
|
variables => "",
|
|
},
|
|
],
|
|
Products => [
|
|
{
|
|
arch => "x86_64",
|
|
distri => "fedora",
|
|
flavor => "server",
|
|
name => "",
|
|
settings => [
|
|
],
|
|
variables => "",
|
|
version => "rawhide",
|
|
},
|
|
],
|
|
TestSuites => [
|
|
{
|
|
name => "server_simple",
|
|
prio => 1,
|
|
settings => [
|
|
{ key => "DISK_GUIDED_EMPTY", value => "1" },
|
|
],
|
|
variables => "",
|
|
},
|
|
{
|
|
name => "server_sata_multi",
|
|
prio => 2,
|
|
settings => [
|
|
{ key => "NUMDISKS", value => "2" },
|
|
{ key => "DISK_GUIDED_MULTI", value => "1" },
|
|
],
|
|
variables => "",
|
|
},
|
|
],
|
|
}
|