aboutsummaryrefslogtreecommitdiffstats
path: root/testcases/VIM/OpenStack/CI/suites/opnfv-vm.json
blob: 382f40251c80af7f605d91f10ddae3da0bcea5c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
    "VMTasks.boot_runcommand_delete": [
        {
            "args": {
                "flavor": {
                    "name": "m1.small"
                },
                "image": {
                    "name": "^functest-img*"
                },
                "floating_network": "net04_ext",
                "force_delete": false,
                "script": "../Rally_repo/samples/tasks/support/instance_dd_test.sh",
                "interpreter": "/bin/sh",
                "username": "admin"
            },
            "runner": {
                "type": "constant",
                "times": 10,
                "concurrency": 2
            },
            "context": {
                "users": {
                    "tenants": 3,
                    "users_per_tenant": 2
                },
                "network": {
                }
            },
            "sla": {
                "failure_rate": {"max": 0}
            }
        }
    ],
    "VMTasks.boot_runcommand_delete": [
        {
            "args": {
                "flavor": {
                    "name": "m1.small"
                },
                "image": {
                    "name": "^functest-img*"
                },
                "volume_args": {
                    "size": 2
                },
                "fixed_network": "private",
                "floating_network": "net04_ext",
                "use_floatingip": true,
                "force_delete": false,
                "script": "../Rally_repo/samples/tasks/support/instance_dd_test.sh",
                "interpreter": "/bin/sh",
                "username": "admin"
            },
            "runner": {
                "type": "constant",
                "times": 10,
                "concurrency": 2
            },
            "context": {
                "users": {
                    "tenants": 3,
                    "users_per_tenant": 2
                }
            },
            "sla": {
                "failure_rate": {"max": 0}
            }
        }
    ]
}
class="p">; } /* * Disable card status IRQs on suspend. */ static void assabet_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt) { /* * Tristate the CF bus signals. Also assert CF * reset as per user guide page 4-11. */ ASSABET_BCR_set(ASSABET_BCR_CF_BUS_OFF | ASSABET_BCR_CF_RST); } static struct pcmcia_low_level assabet_pcmcia_ops = { .owner = THIS_MODULE, .hw_init = assabet_pcmcia_hw_init, .socket_state = assabet_pcmcia_socket_state, .configure_socket = assabet_pcmcia_configure_socket, .socket_suspend = assabet_pcmcia_socket_suspend, }; int pcmcia_assabet_init(struct device *dev) { int ret = -ENODEV; if (machine_is_assabet() && !machine_has_neponset()) ret = sa11xx_drv_pcmcia_probe(dev, &assabet_pcmcia_ops, 1, 1); return ret; }