diff options
| author | Joshua Powers <[email protected]> | 2017-11-22 10:53:46 -0800 |
|---|---|---|
| committer | Joshua Powers <[email protected]> | 2017-11-22 10:53:46 -0800 |
| commit | c6580749a1183c20c030f9820dc8e8459234cf85 (patch) | |
| tree | 4070c59237694cc8b8242801eec2e3f3a2d2294d /tests/vmtests/test_basic.py | |
| parent | 1f02354711dd7bd587d1b3d47dc697ac2b516776 (diff) | |
vmtests: Add Bionic release and update classes
bzr-revno: 542.1.1
Diffstat (limited to 'tests/vmtests/test_basic.py')
| -rw-r--r-- | tests/vmtests/test_basic.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/vmtests/test_basic.py b/tests/vmtests/test_basic.py index 460f7314..58dc16d4 100644 --- a/tests/vmtests/test_basic.py +++ b/tests/vmtests/test_basic.py @@ -166,6 +166,10 @@ class ArtfulTestBasic(relbase.artful, TestBasicAbs): __test__ = True +class BionicTestBasic(relbase.bionic, TestBasicAbs): + __test__ = True + + class TestBasicScsiAbs(TestBasicAbs): conf_file = "examples/tests/basic_scsi.yaml" disk_driver = 'scsi-hd' @@ -272,3 +276,7 @@ class ZestyTestScsiBasic(relbase.zesty, TestBasicScsiAbs): class ArtfulTestScsiBasic(relbase.artful, TestBasicScsiAbs): __test__ = True + + +class BionicTestScsiBasic(relbase.bionic, TestBasicScsiAbs): + __test__ = True |
