blob: cd7efd6ed0f345d803a8ca1b87ab862960aab556 (
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
|
# This file is part of curtin. See LICENSE file for copyright and license info.
from . import VMBaseClass
from .releases import base_vm_classes as relbase
class TestReuseLVMMemberPartition(VMBaseClass):
""" Curtin can install to a LVM member if other members are missing. """
conf_file = "examples/tests/reuse-lvm-member-partition.yaml"
extra_disks = ['10G', '10G']
disk_driver = 'scsi-hd'
test_stype = 'storage'
uefi = True
def test_simple(self):
pass
class BionicTestReuseLVMMemberPartition(relbase.bionic,
TestReuseLVMMemberPartition):
__test__ = True
class FocalTestReuseLVMMemberPartition(relbase.focal,
TestReuseLVMMemberPartition):
__test__ = True
class JammyTestReuseLVMMemberPartition(relbase.jammy,
TestReuseLVMMemberPartition):
__test__ = True
# vi: ts=4 expandtab syntax=python
|