Merge ~dbungert/curtin:cloud-init-vmtest-ctd into curtin:master

Proposed by Dan Bungert
Status: Merged
Approved by: Dan Bungert
Approved revision: 1bec49fd274285e6507535a77968fc188917e909
Merge reported by: Server Team CI bot
Merged at revision: not available
Proposed branch: ~dbungert/curtin:cloud-init-vmtest-ctd
Merge into: curtin:master
Diff against target: 949 lines (+0/-328)
50 files modified
tests/vmtests/releases.py (+0/-8)
tests/vmtests/test_apt_config_cmd.py (+0/-4)
tests/vmtests/test_basic.py (+0/-8)
tests/vmtests/test_basic_dasd.py (+0/-4)
tests/vmtests/test_bcache_basic.py (+0/-4)
tests/vmtests/test_bcache_bug1718699.py (+0/-4)
tests/vmtests/test_bcache_ceph.py (+0/-8)
tests/vmtests/test_bcache_partitions.py (+0/-4)
tests/vmtests/test_fs_battery.py (+0/-4)
tests/vmtests/test_iscsi.py (+0/-4)
tests/vmtests/test_journald_reporter.py (+0/-4)
tests/vmtests/test_lvm.py (+0/-4)
tests/vmtests/test_lvm_iscsi.py (+0/-4)
tests/vmtests/test_lvm_raid.py (+0/-4)
tests/vmtests/test_lvm_root.py (+0/-15)
tests/vmtests/test_mdadm_bcache.py (+0/-34)
tests/vmtests/test_mdadm_iscsi.py (+0/-4)
tests/vmtests/test_multipath.py (+0/-8)
tests/vmtests/test_multipath_lvm.py (+0/-9)
tests/vmtests/test_network.py (+0/-4)
tests/vmtests/test_network_alias.py (+0/-4)
tests/vmtests/test_network_bonding.py (+0/-4)
tests/vmtests/test_network_bridging.py (+0/-4)
tests/vmtests/test_network_disabled.py (+0/-14)
tests/vmtests/test_network_ipv6.py (+0/-4)
tests/vmtests/test_network_ipv6_static.py (+0/-4)
tests/vmtests/test_network_ipv6_vlan.py (+0/-4)
tests/vmtests/test_network_mtu.py (+0/-4)
tests/vmtests/test_network_ovs.py (+0/-4)
tests/vmtests/test_network_static.py (+0/-4)
tests/vmtests/test_network_static_routes.py (+0/-5)
tests/vmtests/test_network_vlan.py (+0/-4)
tests/vmtests/test_nvme.py (+0/-10)
tests/vmtests/test_panic.py (+0/-4)
tests/vmtests/test_pollinate_useragent.py (+0/-4)
tests/vmtests/test_preserve.py (+0/-4)
tests/vmtests/test_preserve_bcache.py (+0/-4)
tests/vmtests/test_preserve_lvm.py (+0/-4)
tests/vmtests/test_preserve_partition_wipe_vg.py (+0/-10)
tests/vmtests/test_preserve_raid.py (+0/-9)
tests/vmtests/test_python_apt.py (+0/-4)
tests/vmtests/test_raid5_bcache.py (+0/-4)
tests/vmtests/test_raid_partition_to_disk.py (+0/-4)
tests/vmtests/test_reuse_lvm_member.py (+0/-5)
tests/vmtests/test_reuse_msdos_partitions.py (+0/-5)
tests/vmtests/test_reuse_raid_member.py (+0/-9)
tests/vmtests/test_reuse_uefi_esp.py (+0/-7)
tests/vmtests/test_simple.py (+0/-21)
tests/vmtests/test_uefi_basic.py (+0/-9)
tests/vmtests/test_zfsroot.py (+0/-10)
Reviewer Review Type Date Requested Status
Server Team CI bot continuous-integration Approve
Chris Peterson Approve
Review via email: mp+452185@code.launchpad.net

Commit message

Revert "vmtests: add mantic after jammy"

This reverts commit abebab1e1e30a16d4be891a051060e81254ff0c5.

Description of the change

The motivation right now around vmtests is unblocking cloud-init SRU
testing. Mantic testing is not on their test path, for several
reasons, mostly with the fact that this testing is focused on
network cases which are not valid for Ubuntu Mantic.

Also, the underlying images aren't available anyhow on the image
stream, so these tests can't even run yet unless environment
variable MAAS_IMAGE_STREAM=candidate is set.

These mantic network tests fail if we force them to run in spite of
the above.

Disable for now and let's revisit.

To post a comment you must log in.
Revision history for this message
Chris Peterson (cpete) :
review: Approve
Revision history for this message
Server Team CI bot (server-team-bot) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
diff --git a/tests/vmtests/releases.py b/tests/vmtests/releases.py
index 7519c57..56e5e8c 100644
--- a/tests/vmtests/releases.py
+++ b/tests/vmtests/releases.py
@@ -172,13 +172,6 @@ class _JammyBase(_UbuntuBase):
172 subarch = "ga-22.04"172 subarch = "ga-22.04"
173173
174174
175class _ManticBase(_UbuntuBase):
176 release = "mantic"
177 target_release = "mantic"
178 if _UbuntuBase.arch == "arm64":
179 subarch = "ga-23.10"
180
181
182class _Releases(object):175class _Releases(object):
183 trusty = _TrustyBase176 trusty = _TrustyBase
184 precise = _PreciseBase177 precise = _PreciseBase
@@ -198,7 +191,6 @@ class _Releases(object):
198 eoan = _EoanBase191 eoan = _EoanBase
199 focal = _FocalBase192 focal = _FocalBase
200 jammy = _JammyBase193 jammy = _JammyBase
201 mantic = _ManticBase
202194
203195
204class _CentosReleases(object):196class _CentosReleases(object):
diff --git a/tests/vmtests/test_apt_config_cmd.py b/tests/vmtests/test_apt_config_cmd.py
index 50ea224..a847910 100644
--- a/tests/vmtests/test_apt_config_cmd.py
+++ b/tests/vmtests/test_apt_config_cmd.py
@@ -72,8 +72,4 @@ class JammyTestAptConfigCMDCMD(relbase.jammy, TestAptConfigCMD):
72 __test__ = True72 __test__ = True
7373
7474
75class ManticTestAptConfigCMDCMD(relbase.mantic, TestAptConfigCMD):
76 __test__ = True
77
78
79# vi: ts=4 expandtab syntax=python75# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_basic.py b/tests/vmtests/test_basic.py
index 1a99395..f626f2e 100644
--- a/tests/vmtests/test_basic.py
+++ b/tests/vmtests/test_basic.py
@@ -238,10 +238,6 @@ class JammyTestBasic(relbase.jammy, TestBasicAbs):
238 __test__ = True238 __test__ = True
239239
240240
241class ManticTestBasic(relbase.mantic, TestBasicAbs):
242 __test__ = True
243
244
245class TestBasicScsiAbs(TestBasicAbs):241class TestBasicScsiAbs(TestBasicAbs):
246 arch_skip = [242 arch_skip = [
247 'arm64', # arm64 is UEFI only243 'arm64', # arm64 is UEFI only
@@ -362,8 +358,4 @@ class JammyTestScsiBasic(relbase.jammy, TestBasicScsiAbs):
362 __test__ = True358 __test__ = True
363359
364360
365class ManticTestScsiBasic(relbase.mantic, TestBasicScsiAbs):
366 __test__ = True
367
368
369# vi: ts=4 expandtab syntax=python361# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_basic_dasd.py b/tests/vmtests/test_basic_dasd.py
index 3ab7544..154f26d 100644
--- a/tests/vmtests/test_basic_dasd.py
+++ b/tests/vmtests/test_basic_dasd.py
@@ -60,8 +60,4 @@ class JammyTestBasicDasd(relbase.jammy, TestBasicDasd):
60 __test__ = True60 __test__ = True
6161
6262
63class ManticTestBasicDasd(relbase.mantic, TestBasicDasd):
64 __test__ = True
65
66
67# vi: ts=4 expandtab syntax=python63# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_bcache_basic.py b/tests/vmtests/test_bcache_basic.py
index f4d8731..2e62f0b 100644
--- a/tests/vmtests/test_bcache_basic.py
+++ b/tests/vmtests/test_bcache_basic.py
@@ -72,8 +72,4 @@ class JammyBcacheBasic(relbase.jammy, TestBcacheBasic):
72 __test__ = True72 __test__ = True
7373
7474
75class ManticBcacheBasic(relbase.mantic, TestBcacheBasic):
76 __test__ = True
77
78
79# vi: ts=4 expandtab syntax=python75# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_bcache_bug1718699.py b/tests/vmtests/test_bcache_bug1718699.py
index 6eb781c..82a765a 100644
--- a/tests/vmtests/test_bcache_bug1718699.py
+++ b/tests/vmtests/test_bcache_bug1718699.py
@@ -27,8 +27,4 @@ class JammyTestBcacheBug1718699(relbase.jammy, TestBcacheBug1718699):
27 __test__ = True27 __test__ = True
2828
2929
30class ManticTestBcacheBug1718699(relbase.mantic, TestBcacheBug1718699):
31 __test__ = True
32
33
34# vi: ts=4 expandtab syntax=python30# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_bcache_ceph.py b/tests/vmtests/test_bcache_ceph.py
index 9bc7287..15cce59 100644
--- a/tests/vmtests/test_bcache_ceph.py
+++ b/tests/vmtests/test_bcache_ceph.py
@@ -83,10 +83,6 @@ class JammyTestBcacheCeph(relbase.jammy, TestBcacheCeph):
83 __test__ = True83 __test__ = True
8484
8585
86class ManticTestBcacheCeph(relbase.mantic, TestBcacheCeph):
87 __test__ = True
88
89
90class TestBcacheCephLvm(TestBcacheCeph):86class TestBcacheCephLvm(TestBcacheCeph):
91 test_type = 'storage'87 test_type = 'storage'
92 nr_cpus = 288 nr_cpus = 2
@@ -117,8 +113,4 @@ class JammyTestBcacheCephLvm(relbase.jammy, TestBcacheCephLvm):
117 __test__ = True113 __test__ = True
118114
119115
120class ManticTestBcacheCephLvm(relbase.mantic, TestBcacheCephLvm):
121 __test__ = True
122
123
124# vi: ts=4 expandtab syntax=python116# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_bcache_partitions.py b/tests/vmtests/test_bcache_partitions.py
index 52cfd03..c3c41bc 100644
--- a/tests/vmtests/test_bcache_partitions.py
+++ b/tests/vmtests/test_bcache_partitions.py
@@ -33,8 +33,4 @@ class JammyTestBcachePartitions(relbase.jammy, TestBcachePartitions):
33 __test__ = True33 __test__ = True
3434
3535
36class ManticTestBcachePartitions(relbase.mantic, TestBcachePartitions):
37 __test__ = True
38
39
40# vi: ts=4 expandtab syntax=python36# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_fs_battery.py b/tests/vmtests/test_fs_battery.py
index 034f10f..75084b0 100644
--- a/tests/vmtests/test_fs_battery.py
+++ b/tests/vmtests/test_fs_battery.py
@@ -247,8 +247,4 @@ class JammyTestFsBattery(relbase.jammy, TestFsBattery):
247 __test__ = True247 __test__ = True
248248
249249
250class ManticTestFsBattery(relbase.mantic, TestFsBattery):
251 __test__ = True
252
253
254# vi: ts=4 expandtab syntax=python250# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_iscsi.py b/tests/vmtests/test_iscsi.py
index 05c28fc..6ad343d 100644
--- a/tests/vmtests/test_iscsi.py
+++ b/tests/vmtests/test_iscsi.py
@@ -80,8 +80,4 @@ class JammyTestIscsiBasic(relbase.jammy, TestBasicIscsiAbs):
80 __test__ = True80 __test__ = True
8181
8282
83class ManticTestIscsiBasic(relbase.mantic, TestBasicIscsiAbs):
84 __test__ = True
85
86
87# vi: ts=4 expandtab syntax=python83# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_journald_reporter.py b/tests/vmtests/test_journald_reporter.py
index 299fef7..ba39af2 100644
--- a/tests/vmtests/test_journald_reporter.py
+++ b/tests/vmtests/test_journald_reporter.py
@@ -40,8 +40,4 @@ class JammyTestJournaldReporter(relbase.jammy, TestJournaldReporter):
40 __test__ = True40 __test__ = True
4141
4242
43class ManticTestJournaldReporter(relbase.mantic, TestJournaldReporter):
44 __test__ = True
45
46
47# vi: ts=4 expandtab syntax=python43# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_lvm.py b/tests/vmtests/test_lvm.py
index 052d339..e15838e 100644
--- a/tests/vmtests/test_lvm.py
+++ b/tests/vmtests/test_lvm.py
@@ -85,8 +85,4 @@ class JammyTestLvm(relbase.jammy, TestLvmAbs):
85 __test__ = True85 __test__ = True
8686
8787
88class ManticTestLvm(relbase.mantic, TestLvmAbs):
89 __test__ = True
90
91
92# vi: ts=4 expandtab syntax=python88# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_lvm_iscsi.py b/tests/vmtests/test_lvm_iscsi.py
index 76117c1..94e523b 100644
--- a/tests/vmtests/test_lvm_iscsi.py
+++ b/tests/vmtests/test_lvm_iscsi.py
@@ -103,8 +103,4 @@ class JammyTestIscsiLvm(relbase.jammy, TestLvmIscsiAbs):
103 __test__ = True103 __test__ = True
104104
105105
106class ManticTestIscsiLvm(relbase.mantic, TestLvmIscsiAbs):
107 __test__ = True
108
109
110# vi: ts=4 expandtab syntax=python106# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_lvm_raid.py b/tests/vmtests/test_lvm_raid.py
index d9eb9ff..b265318 100644
--- a/tests/vmtests/test_lvm_raid.py
+++ b/tests/vmtests/test_lvm_raid.py
@@ -63,8 +63,4 @@ class JammyTestLvmOverRaid(relbase.jammy, TestLvmOverRaidAbs):
63 __test__ = True63 __test__ = True
6464
6565
66class ManticTestLvmOverRaid(relbase.mantic, TestLvmOverRaidAbs):
67 __test__ = True
68
69
70# vi: ts=4 expandtab syntax=python66# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_lvm_root.py b/tests/vmtests/test_lvm_root.py
index 3d14a2b..6464f22 100644
--- a/tests/vmtests/test_lvm_root.py
+++ b/tests/vmtests/test_lvm_root.py
@@ -101,13 +101,6 @@ class JammyTestLvmRootExt4(relbase.jammy, TestLvmRootAbs):
101 }101 }
102102
103103
104class ManticTestLvmRootExt4(relbase.mantic, TestLvmRootAbs):
105 __test__ = True
106 conf_replace = {
107 '__ROOTFS_FORMAT__': 'ext4',
108 }
109
110
111class XenialTestLvmRootXfs(relbase.xenial, TestLvmRootAbs):104class XenialTestLvmRootXfs(relbase.xenial, TestLvmRootAbs):
112 __test__ = True105 __test__ = True
113 conf_replace = {106 conf_replace = {
@@ -162,14 +155,6 @@ class JammyTestUefiLvmRootExt4(relbase.jammy, TestUefiLvmRootAbs):
162 }155 }
163156
164157
165class ManticTestUefiLvmRootExt4(relbase.mantic, TestUefiLvmRootAbs):
166 __test__ = True
167 conf_replace = {
168 '__BOOTFS_FORMAT__': 'ext4',
169 '__ROOTFS_FORMAT__': 'ext4',
170 }
171
172
173class XenialTestUefiLvmRootXfs(relbase.xenial, TestUefiLvmRootAbs):158class XenialTestUefiLvmRootXfs(relbase.xenial, TestUefiLvmRootAbs):
174 __test__ = True159 __test__ = True
175 conf_replace = {160 conf_replace = {
diff --git a/tests/vmtests/test_mdadm_bcache.py b/tests/vmtests/test_mdadm_bcache.py
index 95c2d58..54b3588 100644
--- a/tests/vmtests/test_mdadm_bcache.py
+++ b/tests/vmtests/test_mdadm_bcache.py
@@ -162,10 +162,6 @@ class JammyTestMdadmBcache(relbase.jammy, TestMdadmBcacheAbs):
162 __test__ = True162 __test__ = True
163163
164164
165class ManticTestMdadmBcache(relbase.mantic, TestMdadmBcacheAbs):
166 __test__ = True
167
168
169class TestMirrorbootAbs(TestMdadmAbs):165class TestMirrorbootAbs(TestMdadmAbs):
170 # alternative config for more complex setup166 # alternative config for more complex setup
171 conf_file = "examples/tests/mirrorboot.yaml"167 conf_file = "examples/tests/mirrorboot.yaml"
@@ -211,10 +207,6 @@ class JammyTestMirrorboot(relbase.jammy, TestMirrorbootAbs):
211 __test__ = True207 __test__ = True
212208
213209
214class ManticTestMirrorboot(relbase.mantic, TestMirrorbootAbs):
215 __test__ = True
216
217
218class TestMirrorbootPartitionsAbs(TestMdadmAbs):210class TestMirrorbootPartitionsAbs(TestMdadmAbs):
219 # alternative config for more complex setup211 # alternative config for more complex setup
220 conf_file = "examples/tests/mirrorboot-msdos-partition.yaml"212 conf_file = "examples/tests/mirrorboot-msdos-partition.yaml"
@@ -265,11 +257,6 @@ class JammyTestMirrorbootPartitions(relbase.jammy,
265 __test__ = True257 __test__ = True
266258
267259
268class ManticTestMirrorbootPartitions(relbase.mantic,
269 TestMirrorbootPartitionsAbs):
270 __test__ = True
271
272
273class TestMirrorbootPartitionsUEFIAbs(TestMdadmAbs):260class TestMirrorbootPartitionsUEFIAbs(TestMdadmAbs):
274 # alternative config for more complex setup261 # alternative config for more complex setup
275 conf_file = "examples/tests/mirrorboot-uefi.yaml"262 conf_file = "examples/tests/mirrorboot-uefi.yaml"
@@ -365,11 +352,6 @@ class JammyTestMirrorbootPartitionsUEFI(relbase.jammy,
365 __test__ = True352 __test__ = True
366353
367354
368class ManticTestMirrorbootPartitionsUEFI(relbase.mantic,
369 TestMirrorbootPartitionsUEFIAbs):
370 __test__ = True
371
372
373class TestRaid5bootAbs(TestMdadmAbs):355class TestRaid5bootAbs(TestMdadmAbs):
374 # alternative config for more complex setup356 # alternative config for more complex setup
375 conf_file = "examples/tests/raid5boot.yaml"357 conf_file = "examples/tests/raid5boot.yaml"
@@ -418,10 +400,6 @@ class JammyTestRaid5boot(relbase.jammy, TestRaid5bootAbs):
418 __test__ = True400 __test__ = True
419401
420402
421class ManticTestRaid5boot(relbase.mantic, TestRaid5bootAbs):
422 __test__ = True
423
424
425class TestRaid6bootAbs(TestMdadmAbs):403class TestRaid6bootAbs(TestMdadmAbs):
426 # alternative config for more complex setup404 # alternative config for more complex setup
427 conf_file = "examples/tests/raid6boot.yaml"405 conf_file = "examples/tests/raid6boot.yaml"
@@ -483,10 +461,6 @@ class JammyTestRaid6boot(relbase.jammy, TestRaid6bootAbs):
483 __test__ = True461 __test__ = True
484462
485463
486class ManticTestRaid6boot(relbase.mantic, TestRaid6bootAbs):
487 __test__ = True
488
489
490class TestRaid10bootAbs(TestMdadmAbs):464class TestRaid10bootAbs(TestMdadmAbs):
491 # alternative config for more complex setup465 # alternative config for more complex setup
492 conf_file = "examples/tests/raid10boot.yaml"466 conf_file = "examples/tests/raid10boot.yaml"
@@ -534,10 +508,6 @@ class JammyTestRaid10boot(relbase.jammy, TestRaid10bootAbs):
534 __test__ = True508 __test__ = True
535509
536510
537class ManticTestRaid10boot(relbase.mantic, TestRaid10bootAbs):
538 __test__ = True
539
540
541class TestAllindataAbs(TestMdadmAbs):511class TestAllindataAbs(TestMdadmAbs):
542 # more complex, needs more time512 # more complex, needs more time
543 # alternative config for more complex setup513 # alternative config for more complex setup
@@ -642,8 +612,4 @@ class JammyTestAllindata(relbase.jammy, TestAllindataAbs):
642 __test__ = True612 __test__ = True
643613
644614
645class ManticTestAllindata(relbase.mantic, TestAllindataAbs):
646 __test__ = True
647
648
649# vi: ts=4 expandtab syntax=python615# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_mdadm_iscsi.py b/tests/vmtests/test_mdadm_iscsi.py
index 7280082..128712c 100644
--- a/tests/vmtests/test_mdadm_iscsi.py
+++ b/tests/vmtests/test_mdadm_iscsi.py
@@ -58,8 +58,4 @@ class JammyTestIscsiMdadm(relbase.jammy, TestMdadmIscsiAbs):
58 __test__ = True58 __test__ = True
5959
6060
61class ManticTestIscsiMdadm(relbase.mantic, TestMdadmIscsiAbs):
62 __test__ = True
63
64
65# vi: ts=4 expandtab syntax=python61# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_multipath.py b/tests/vmtests/test_multipath.py
index 28b5acd..0067737 100644
--- a/tests/vmtests/test_multipath.py
+++ b/tests/vmtests/test_multipath.py
@@ -166,10 +166,6 @@ class JammyTestMultipathBasic(relbase.jammy, TestMultipathBasicAbs):
166 __test__ = True166 __test__ = True
167167
168168
169class ManticTestMultipathBasic(relbase.mantic, TestMultipathBasicAbs):
170 __test__ = True
171
172
173class TestMultipathReuseAbs(TestMultipathBasicAbs):169class TestMultipathReuseAbs(TestMultipathBasicAbs):
174 conf_file = "examples/tests/multipath-reuse.yaml"170 conf_file = "examples/tests/multipath-reuse.yaml"
175171
@@ -182,8 +178,4 @@ class JammyTestMultipathReuse(relbase.jammy, TestMultipathReuseAbs):
182 __test__ = True178 __test__ = True
183179
184180
185class ManticTestMultipathReuse(relbase.mantic, TestMultipathReuseAbs):
186 __test__ = True
187
188
189# vi: ts=4 expandtab syntax=python181# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_multipath_lvm.py b/tests/vmtests/test_multipath_lvm.py
index 1d60be7..aaeefd5 100644
--- a/tests/vmtests/test_multipath_lvm.py
+++ b/tests/vmtests/test_multipath_lvm.py
@@ -64,10 +64,6 @@ class JammyTestMultipathLvm(relbase.jammy, TestMultipathLvmAbs):
64 __test__ = True64 __test__ = True
6565
6666
67class ManticTestMultipathLvm(relbase.mantic, TestMultipathLvmAbs):
68 __test__ = True
69
70
71class TestMultipathLvmPartWipeAbs(TestMultipathLvmAbs):67class TestMultipathLvmPartWipeAbs(TestMultipathLvmAbs):
72 conf_file = "examples/tests/multipath-lvm-part-wipe.yaml"68 conf_file = "examples/tests/multipath-lvm-part-wipe.yaml"
7369
@@ -82,9 +78,4 @@ class JammyTestMultipathLvmPartWipe(relbase.jammy,
82 __test__ = True78 __test__ = True
8379
8480
85class ManticTestMultipathLvmPartWipe(relbase.mantic,
86 TestMultipathLvmPartWipeAbs):
87 __test__ = True
88
89
90# vi: ts=4 expandtab syntax=python81# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_network.py b/tests/vmtests/test_network.py
index e838934..4b16aeb 100644
--- a/tests/vmtests/test_network.py
+++ b/tests/vmtests/test_network.py
@@ -482,10 +482,6 @@ class JammyTestNetworkBasic(relbase.jammy, TestNetworkBasicAbs):
482 __test__ = True482 __test__ = True
483483
484484
485class ManticTestNetworkBasic(relbase.mantic, TestNetworkBasicAbs):
486 __test__ = True
487
488
489class Centos70TestNetworkBasic(centos_relbase.centos70_xenial,485class Centos70TestNetworkBasic(centos_relbase.centos70_xenial,
490 CentosTestNetworkBasicAbs):486 CentosTestNetworkBasicAbs):
491 __test__ = True487 __test__ = True
diff --git a/tests/vmtests/test_network_alias.py b/tests/vmtests/test_network_alias.py
index 1570c8f..628a8b7 100644
--- a/tests/vmtests/test_network_alias.py
+++ b/tests/vmtests/test_network_alias.py
@@ -55,8 +55,4 @@ class JammyTestNetworkAlias(relbase.jammy, TestNetworkAliasAbs):
55 __test__ = True55 __test__ = True
5656
5757
58class ManticTestNetworkAlias(relbase.mantic, TestNetworkAliasAbs):
59 __test__ = True
60
61
62# vi: ts=4 expandtab syntax=python58# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_network_bonding.py b/tests/vmtests/test_network_bonding.py
index fb91179..ea411d8 100644
--- a/tests/vmtests/test_network_bonding.py
+++ b/tests/vmtests/test_network_bonding.py
@@ -65,10 +65,6 @@ class JammyTestBonding(relbase.jammy, TestNetworkBondingAbs):
65 __test__ = True65 __test__ = True
6666
6767
68class ManticTestBonding(relbase.mantic, TestNetworkBondingAbs):
69 __test__ = True
70
71
72class Centos70TestNetworkBonding(centos_relbase.centos70_xenial,68class Centos70TestNetworkBonding(centos_relbase.centos70_xenial,
73 CentosTestNetworkBondingAbs):69 CentosTestNetworkBondingAbs):
74 __test__ = True70 __test__ = True
diff --git a/tests/vmtests/test_network_bridging.py b/tests/vmtests/test_network_bridging.py
index a46841f..c8c52b3 100644
--- a/tests/vmtests/test_network_bridging.py
+++ b/tests/vmtests/test_network_bridging.py
@@ -237,10 +237,6 @@ class JammyTestBridging(relbase.jammy, TestBridgeNetworkAbs):
237 __test__ = True237 __test__ = True
238238
239239
240class ManticTestBridging(relbase.mantic, TestBridgeNetworkAbs):
241 __test__ = True
242
243
244class XenialTestBridgingV2(relbase.xenial, TestBridgeNetworkAbs):240class XenialTestBridgingV2(relbase.xenial, TestBridgeNetworkAbs):
245 """ This class only needs to verify that when provided a v2 config241 """ This class only needs to verify that when provided a v2 config
246 that the Xenial network packages are installed. """242 that the Xenial network packages are installed. """
diff --git a/tests/vmtests/test_network_disabled.py b/tests/vmtests/test_network_disabled.py
index 3494d38..b4f9eb7 100644
--- a/tests/vmtests/test_network_disabled.py
+++ b/tests/vmtests/test_network_disabled.py
@@ -83,18 +83,4 @@ class JammyCurtinDisableCloudInitNetworkingVersion1(relbase.jammy, TestKlass3):
83 __test__ = True83 __test__ = True
8484
8585
86class ManticCurtinDisableNetworkRendering(relbase.mantic, TestKlass1):
87 __test__ = True
88
89
90class ManticCurtinDisableCloudInitNetworking(relbase.mantic, TestKlass2):
91 __test__ = True
92
93
94class ManticCurtinDisableCloudInitNetworkingVersion1(
95 relbase.mantic, TestKlass3
96):
97 __test__ = True
98
99
100# vi: ts=4 expandtab syntax=python86# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_network_ipv6.py b/tests/vmtests/test_network_ipv6.py
index 5b96b16..5c31b48 100644
--- a/tests/vmtests/test_network_ipv6.py
+++ b/tests/vmtests/test_network_ipv6.py
@@ -61,10 +61,6 @@ class JammyTestNetworkIPV6(relbase.jammy, TestNetworkIPV6Abs):
61 __test__ = True61 __test__ = True
6262
6363
64class ManticTestNetworkIPV6(relbase.mantic, TestNetworkIPV6Abs):
65 __test__ = True
66
67
68class Centos70TestNetworkIPV6(centos_relbase.centos70_xenial,64class Centos70TestNetworkIPV6(centos_relbase.centos70_xenial,
69 CentosTestNetworkIPV6Abs):65 CentosTestNetworkIPV6Abs):
70 __test__ = True66 __test__ = True
diff --git a/tests/vmtests/test_network_ipv6_static.py b/tests/vmtests/test_network_ipv6_static.py
index 8e070e8..5352bfe 100644
--- a/tests/vmtests/test_network_ipv6_static.py
+++ b/tests/vmtests/test_network_ipv6_static.py
@@ -31,10 +31,6 @@ class JammyTestNetworkIPV6Static(relbase.jammy, TestNetworkIPV6StaticAbs):
31 __test__ = True31 __test__ = True
3232
3333
34class ManticTestNetworkIPV6Static(relbase.mantic, TestNetworkIPV6StaticAbs):
35 __test__ = True
36
37
38class Centos70TestNetworkIPV6Static(centos_relbase.centos70_xenial,34class Centos70TestNetworkIPV6Static(centos_relbase.centos70_xenial,
39 CentosTestNetworkIPV6StaticAbs):35 CentosTestNetworkIPV6StaticAbs):
40 __test__ = True36 __test__ = True
diff --git a/tests/vmtests/test_network_ipv6_vlan.py b/tests/vmtests/test_network_ipv6_vlan.py
index 0e7e302..8f3fe64 100644
--- a/tests/vmtests/test_network_ipv6_vlan.py
+++ b/tests/vmtests/test_network_ipv6_vlan.py
@@ -30,10 +30,6 @@ class JammyTestNetworkIPV6Vlan(relbase.jammy, TestNetworkIPV6VlanAbs):
30 __test__ = True30 __test__ = True
3131
3232
33class ManticTestNetworkIPV6Vlan(relbase.mantic, TestNetworkIPV6VlanAbs):
34 __test__ = True
35
36
37class Centos70TestNetworkIPV6Vlan(centos_relbase.centos70_xenial,33class Centos70TestNetworkIPV6Vlan(centos_relbase.centos70_xenial,
38 CentosTestNetworkIPV6VlanAbs):34 CentosTestNetworkIPV6VlanAbs):
39 __test__ = True35 __test__ = True
diff --git a/tests/vmtests/test_network_mtu.py b/tests/vmtests/test_network_mtu.py
index 7aff7b2..67d5d01 100644
--- a/tests/vmtests/test_network_mtu.py
+++ b/tests/vmtests/test_network_mtu.py
@@ -197,10 +197,6 @@ class JammyTestNetworkMtu(relbase.jammy, TestNetworkMtuNetworkdAbs):
197 __test__ = True197 __test__ = True
198198
199199
200class ManticTestNetworkMtu(relbase.mantic, TestNetworkMtuNetworkdAbs):
201 __test__ = True
202
203
204class Centos70TestNetworkMtu(centos_relbase.centos70_xenial,200class Centos70TestNetworkMtu(centos_relbase.centos70_xenial,
205 CentosTestNetworkMtuAbs):201 CentosTestNetworkMtuAbs):
206 __test__ = True202 __test__ = True
diff --git a/tests/vmtests/test_network_ovs.py b/tests/vmtests/test_network_ovs.py
index d6e23c8..e168a0d 100644
--- a/tests/vmtests/test_network_ovs.py
+++ b/tests/vmtests/test_network_ovs.py
@@ -42,8 +42,4 @@ class JammyTestNetworkOvs(relbase.jammy, TestNetworkOvsAbs):
42 __test__ = True42 __test__ = True
4343
4444
45class ManticTestNetworkOvs(relbase.mantic, TestNetworkOvsAbs):
46 __test__ = True
47
48
49# vi: ts=4 expandtab syntax=python45# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_network_static.py b/tests/vmtests/test_network_static.py
index 9a2adb3..620c952 100644
--- a/tests/vmtests/test_network_static.py
+++ b/tests/vmtests/test_network_static.py
@@ -36,10 +36,6 @@ class JammyTestNetworkStatic(relbase.jammy, TestNetworkStaticAbs):
36 __test__ = True36 __test__ = True
3737
3838
39class ManticTestNetworkStatic(relbase.mantic, TestNetworkStaticAbs):
40 __test__ = True
41
42
43class Centos70TestNetworkStatic(centos_relbase.centos70_xenial,39class Centos70TestNetworkStatic(centos_relbase.centos70_xenial,
44 CentosTestNetworkStaticAbs):40 CentosTestNetworkStaticAbs):
45 __test__ = True41 __test__ = True
diff --git a/tests/vmtests/test_network_static_routes.py b/tests/vmtests/test_network_static_routes.py
index 8ddeeaf..0258113 100644
--- a/tests/vmtests/test_network_static_routes.py
+++ b/tests/vmtests/test_network_static_routes.py
@@ -38,11 +38,6 @@ class JammyTestNetworkStaticRoutes(relbase.jammy,
38 __test__ = True38 __test__ = True
3939
4040
41class ManticTestNetworkStaticRoutes(relbase.mantic,
42 TestNetworkStaticRoutesAbs):
43 __test__ = True
44
45
46class Centos70TestNetworkStaticRoutes(centos_relbase.centos70_xenial,41class Centos70TestNetworkStaticRoutes(centos_relbase.centos70_xenial,
47 CentosTestNetworkStaticRoutesAbs):42 CentosTestNetworkStaticRoutesAbs):
48 __test__ = False43 __test__ = False
diff --git a/tests/vmtests/test_network_vlan.py b/tests/vmtests/test_network_vlan.py
index 6fca423..0ab62bb 100644
--- a/tests/vmtests/test_network_vlan.py
+++ b/tests/vmtests/test_network_vlan.py
@@ -84,10 +84,6 @@ class JammyTestNetworkVlan(relbase.jammy, TestNetworkVlanAbs):
84 __test__ = True84 __test__ = True
8585
8686
87class ManticTestNetworkVlan(relbase.mantic, TestNetworkVlanAbs):
88 __test__ = True
89
90
91class Centos70TestNetworkVlan(centos_relbase.centos70_xenial,87class Centos70TestNetworkVlan(centos_relbase.centos70_xenial,
92 CentosTestNetworkVlanAbs):88 CentosTestNetworkVlanAbs):
93 __test__ = True89 __test__ = True
diff --git a/tests/vmtests/test_nvme.py b/tests/vmtests/test_nvme.py
index d458fca..dd071e9 100644
--- a/tests/vmtests/test_nvme.py
+++ b/tests/vmtests/test_nvme.py
@@ -85,12 +85,6 @@ class JammyTestNvme(relbase.jammy, TestNvmeAbs):
85 # OSError - [Errno 16] Device or resource busy: '/dev/mapper/mpatha'85 # OSError - [Errno 16] Device or resource busy: '/dev/mapper/mpatha'
8686
8787
88class ManticTestNvme(relbase.mantic, TestNvmeAbs):
89 __test__ = False
90 # An error occured handling 'nvme_disk2':
91 # OSError - [Errno 16] Device or resource busy: '/dev/mapper/mpatha'
92
93
94class TestNvmeBcacheAbs(TestNvmeAbs):88class TestNvmeBcacheAbs(TestNvmeAbs):
95 arch_skip = [89 arch_skip = [
96 "s390x", # nvme is a pci device, no pci on s390x90 "s390x", # nvme is a pci device, no pci on s390x
@@ -161,8 +155,4 @@ class JammyTestNvmeBcache(relbase.jammy, TestNvmeBcacheAbs):
161 __test__ = True155 __test__ = True
162156
163157
164class ManticTestNvmeBcache(relbase.mantic, TestNvmeBcacheAbs):
165 __test__ = True
166
167
168# vi: ts=4 expandtab syntax=python158# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_panic.py b/tests/vmtests/test_panic.py
index d3861e3..d8d3f22 100644
--- a/tests/vmtests/test_panic.py
+++ b/tests/vmtests/test_panic.py
@@ -33,8 +33,4 @@ class JammyTestInstallPanic(relbase.jammy, TestInstallPanic):
33 __test__ = True33 __test__ = True
3434
3535
36class ManticTestInstallPanic(relbase.mantic, TestInstallPanic):
37 __test__ = True
38
39
40# vi: ts=4 expandtab syntax=python36# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_pollinate_useragent.py b/tests/vmtests/test_pollinate_useragent.py
index 3215142..5a4b0fb 100644
--- a/tests/vmtests/test_pollinate_useragent.py
+++ b/tests/vmtests/test_pollinate_useragent.py
@@ -69,8 +69,4 @@ class JammyTestPollinateUserAgent(relbase.jammy, TestPollinateUserAgent):
69 __test__ = True69 __test__ = True
7070
7171
72class ManticTestPollinateUserAgent(relbase.mantic, TestPollinateUserAgent):
73 __test__ = True
74
75
76# vi: ts=4 expandtab syntax=python72# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_preserve.py b/tests/vmtests/test_preserve.py
index 4fbf832..d6eb922 100644
--- a/tests/vmtests/test_preserve.py
+++ b/tests/vmtests/test_preserve.py
@@ -33,8 +33,4 @@ class JammyTestPreserve(relbase.jammy, TestPreserve):
33 __test__ = True33 __test__ = True
3434
3535
36class ManticTestPreserve(relbase.mantic, TestPreserve):
37 __test__ = True
38
39
40# vi: ts=4 expandtab syntax=python36# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_preserve_bcache.py b/tests/vmtests/test_preserve_bcache.py
index 23e4dee..2384be8 100644
--- a/tests/vmtests/test_preserve_bcache.py
+++ b/tests/vmtests/test_preserve_bcache.py
@@ -64,8 +64,4 @@ class JammyTestPreserveBcache(relbase.jammy, TestPreserveBcache):
64 __test__ = True64 __test__ = True
6565
6666
67class ManticTestPreserveBcache(relbase.mantic, TestPreserveBcache):
68 __test__ = True
69
70
71# vi: ts=4 expandtab syntax=python67# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_preserve_lvm.py b/tests/vmtests/test_preserve_lvm.py
index 4b5401d..1eb954e 100644
--- a/tests/vmtests/test_preserve_lvm.py
+++ b/tests/vmtests/test_preserve_lvm.py
@@ -77,8 +77,4 @@ class JammyTestLvmPreserve(relbase.jammy, TestLvmPreserveAbs):
77 __test__ = True77 __test__ = True
7878
7979
80class ManticTestLvmPreserve(relbase.mantic, TestLvmPreserveAbs):
81 __test__ = True
82
83
84# vi: ts=4 expandtab syntax=python80# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_preserve_partition_wipe_vg.py b/tests/vmtests/test_preserve_partition_wipe_vg.py
index e9759bf..76fa9c3 100644
--- a/tests/vmtests/test_preserve_partition_wipe_vg.py
+++ b/tests/vmtests/test_preserve_partition_wipe_vg.py
@@ -33,10 +33,6 @@ class JammyTestPreserveWipeLvm(relbase.jammy, TestPreserveWipeLvm):
33 __test__ = True33 __test__ = True
3434
3535
36class ManticTestPreserveWipeLvm(relbase.mantic, TestPreserveWipeLvm):
37 __test__ = True
38
39
40class TestPreserveWipeLvmSimple(VMBaseClass):36class TestPreserveWipeLvmSimple(VMBaseClass):
41 conf_file = "examples/tests/preserve-partition-wipe-vg-simple.yaml"37 conf_file = "examples/tests/preserve-partition-wipe-vg-simple.yaml"
42 uefi = False38 uefi = False
@@ -60,10 +56,4 @@ class JammyTestPreserveWipeLvmSimple(relbase.jammy, TestPreserveWipeLvmSimple):
60 __test__ = True56 __test__ = True
6157
6258
63class ManticTestPreserveWipeLvmSimple(
64 relbase.mantic, TestPreserveWipeLvmSimple
65):
66 __test__ = True
67
68
69# vi: ts=4 expandtab syntax=python59# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_preserve_raid.py b/tests/vmtests/test_preserve_raid.py
index 7e42e7e..cf97203 100644
--- a/tests/vmtests/test_preserve_raid.py
+++ b/tests/vmtests/test_preserve_raid.py
@@ -33,10 +33,6 @@ class JammyTestPreserveRAID(relbase.jammy, TestPreserveRAID):
33 __test__ = True33 __test__ = True
3434
3535
36class ManticTestPreserveRAID(relbase.mantic, TestPreserveRAID):
37 __test__ = True
38
39
40class TestPartitionExistingRAID(VMBaseClass):36class TestPartitionExistingRAID(VMBaseClass):
41 """ Test that curtin can repartition an existing RAID. """37 """ Test that curtin can repartition an existing RAID. """
42 conf_file = "examples/tests/partition-existing-raid.yaml"38 conf_file = "examples/tests/partition-existing-raid.yaml"
@@ -70,9 +66,4 @@ class JammyTestPartitionExistingRAID(
70 __test__ = True66 __test__ = True
7167
7268
73class ManticTestPartitionExistingRAID(
74 relbase.mantic, TestPartitionExistingRAID):
75 __test__ = True
76
77
78# vi: ts=4 expandtab syntax=python69# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_python_apt.py b/tests/vmtests/test_python_apt.py
index 1542275..ed2e007 100644
--- a/tests/vmtests/test_python_apt.py
+++ b/tests/vmtests/test_python_apt.py
@@ -35,8 +35,4 @@ class JammyTestPythonApt(relbase.jammy, TestPythonApt):
35 __test__ = True35 __test__ = True
3636
3737
38class ManticTestPythonApt(relbase.mantic, TestPythonApt):
39 __test__ = True
40
41
42# vi: ts=4 expandtab syntax=python38# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_raid5_bcache.py b/tests/vmtests/test_raid5_bcache.py
index 53f55cc..e04120d 100644
--- a/tests/vmtests/test_raid5_bcache.py
+++ b/tests/vmtests/test_raid5_bcache.py
@@ -96,8 +96,4 @@ class JammyTestRaid5Bcache(relbase.jammy, TestMdadmBcacheAbs):
96 __test__ = True96 __test__ = True
9797
9898
99class ManticTestRaid5Bcache(relbase.mantic, TestMdadmBcacheAbs):
100 __test__ = True
101
102
103# vi: ts=4 expandtab syntax=python99# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_raid_partition_to_disk.py b/tests/vmtests/test_raid_partition_to_disk.py
index 7a18abe..fa1939c 100644
--- a/tests/vmtests/test_raid_partition_to_disk.py
+++ b/tests/vmtests/test_raid_partition_to_disk.py
@@ -26,8 +26,4 @@ class JammyTestRAIDPartitionToDisk(relbase.jammy, TestRAIDPartitionToDisk):
26 __test__ = True26 __test__ = True
2727
2828
29class ManticTestRAIDPartitionToDisk(relbase.mantic, TestRAIDPartitionToDisk):
30 __test__ = True
31
32
33# vi: ts=4 expandtab syntax=python29# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_reuse_lvm_member.py b/tests/vmtests/test_reuse_lvm_member.py
index e22598e..cd7efd6 100644
--- a/tests/vmtests/test_reuse_lvm_member.py
+++ b/tests/vmtests/test_reuse_lvm_member.py
@@ -31,9 +31,4 @@ class JammyTestReuseLVMMemberPartition(relbase.jammy,
31 __test__ = True31 __test__ = True
3232
3333
34class ManticTestReuseLVMMemberPartition(relbase.mantic,
35 TestReuseLVMMemberPartition):
36 __test__ = True
37
38
39# vi: ts=4 expandtab syntax=python34# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_reuse_msdos_partitions.py b/tests/vmtests/test_reuse_msdos_partitions.py
index 562db39..1561f3f 100644
--- a/tests/vmtests/test_reuse_msdos_partitions.py
+++ b/tests/vmtests/test_reuse_msdos_partitions.py
@@ -28,9 +28,4 @@ class JammyTestReuseMSDOSPartitions(relbase.jammy,
28 __test__ = True28 __test__ = True
2929
3030
31class ManticTestReuseMSDOSPartitions(relbase.mantic,
32 TestReuseMSDOSPartitions):
33 __test__ = True
34
35
36# vi: ts=4 expandtab syntax=python31# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_reuse_raid_member.py b/tests/vmtests/test_reuse_raid_member.py
index 7eb96b4..43c7185 100644
--- a/tests/vmtests/test_reuse_raid_member.py
+++ b/tests/vmtests/test_reuse_raid_member.py
@@ -36,10 +36,6 @@ class JammyTestReuseRAIDMember(relbase.jammy, TestReuseRAIDMember):
36 __test__ = True36 __test__ = True
3737
3838
39class ManticTestReuseRAIDMember(relbase.mantic, TestReuseRAIDMember):
40 __test__ = True
41
42
43class BionicTestReuseRAIDMemberPartition(relbase.bionic,39class BionicTestReuseRAIDMemberPartition(relbase.bionic,
44 TestReuseRAIDMemberPartition):40 TestReuseRAIDMemberPartition):
45 __test__ = True41 __test__ = True
@@ -55,9 +51,4 @@ class JammyTestReuseRAIDMemberPartition(relbase.jammy,
55 __test__ = True51 __test__ = True
5652
5753
58class ManticTestReuseRAIDMemberPartition(relbase.mantic,
59 TestReuseRAIDMemberPartition):
60 __test__ = True
61
62
63# vi: ts=4 expandtab syntax=python54# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_reuse_uefi_esp.py b/tests/vmtests/test_reuse_uefi_esp.py
index f2207b5..3116505 100644
--- a/tests/vmtests/test_reuse_uefi_esp.py
+++ b/tests/vmtests/test_reuse_uefi_esp.py
@@ -48,11 +48,4 @@ class JammyTestUefiReuseEsp(relbase.jammy, TestUefiReuseEspAbs):
48 return super().test_efiboot_menu_has_one_distro_entry()48 return super().test_efiboot_menu_has_one_distro_entry()
4949
5050
51class ManticTestUefiReuseEsp(relbase.mantic, TestUefiReuseEspAbs):
52 __test__ = True
53
54 def test_efiboot_menu_has_one_distro_entry(self):
55 return super().test_efiboot_menu_has_one_distro_entry()
56
57
58# vi: ts=4 expandtab syntax=python51# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_simple.py b/tests/vmtests/test_simple.py
index be87f72..57010f5 100644
--- a/tests/vmtests/test_simple.py
+++ b/tests/vmtests/test_simple.py
@@ -54,13 +54,6 @@ class JammyTestSimple(relbase.jammy, TestSimple):
54 self.output_files_exist(["netplan.yaml"])54 self.output_files_exist(["netplan.yaml"])
5555
5656
57class ManticTestSimple(relbase.mantic, TestSimple):
58 __test__ = True
59
60 def test_output_files_exist(self):
61 self.output_files_exist(["netplan.yaml"])
62
63
64class TestSimpleStorage(VMBaseClass):57class TestSimpleStorage(VMBaseClass):
65 """ Test curtin runs clear-holders when mode=simple with storage cfg. """58 """ Test curtin runs clear-holders when mode=simple with storage cfg. """
66 conf_file = "examples/tests/simple-storage.yaml"59 conf_file = "examples/tests/simple-storage.yaml"
@@ -117,13 +110,6 @@ class JammyTestSimpleStorage(relbase.jammy, TestSimpleStorage):
117 self.output_files_exist(["netplan.yaml"])110 self.output_files_exist(["netplan.yaml"])
118111
119112
120class ManticTestSimpleStorage(relbase.mantic, TestSimpleStorage):
121 __test__ = True
122
123 def test_output_files_exist(self):
124 self.output_files_exist(["netplan.yaml"])
125
126
127class TestGrubNoDefaults(VMBaseClass):113class TestGrubNoDefaults(VMBaseClass):
128 """ Test that curtin does not emit any grub configuration files. """114 """ Test that curtin does not emit any grub configuration files. """
129 conf_file = "examples/tests/no-grub-file.yaml"115 conf_file = "examples/tests/no-grub-file.yaml"
@@ -157,11 +143,4 @@ class JammyTestGrubNoDefaults(relbase.jammy, TestGrubNoDefaults):
157 self.output_files_exist(["netplan.yaml"])143 self.output_files_exist(["netplan.yaml"])
158144
159145
160class ManticTestGrubNoDefaults(relbase.mantic, TestGrubNoDefaults):
161 __test__ = True
162
163 def test_output_files_exist(self):
164 self.output_files_exist(["netplan.yaml"])
165
166
167# vi: ts=4 expandtab syntax=python146# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_uefi_basic.py b/tests/vmtests/test_uefi_basic.py
index 1eeae61..e962e09 100644
--- a/tests/vmtests/test_uefi_basic.py
+++ b/tests/vmtests/test_uefi_basic.py
@@ -104,10 +104,6 @@ class JammyUefiTestBasic(relbase.jammy, TestBasicAbs):
104 __test__ = True104 __test__ = True
105105
106106
107class ManticUefiTestBasic(relbase.mantic, TestBasicAbs):
108 __test__ = True
109
110
111class Centos70UefiTestBasic4k(centos_relbase.centos70_xenial, TestBasicAbs):107class Centos70UefiTestBasic4k(centos_relbase.centos70_xenial, TestBasicAbs):
112 __test__ = True108 __test__ = True
113 disk_block_size = 4096109 disk_block_size = 4096
@@ -133,9 +129,4 @@ class JammyUefiTestBasic4k(relbase.jammy, TestBasicAbs):
133 disk_block_size = 4096129 disk_block_size = 4096
134130
135131
136class ManticUefiTestBasic4k(relbase.mantic, TestBasicAbs):
137 __test__ = True
138 disk_block_size = 4096
139
140
141# vi: ts=4 expandtab syntax=python132# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_zfsroot.py b/tests/vmtests/test_zfsroot.py
index 1bb8fd3..1ea6ca0 100644
--- a/tests/vmtests/test_zfsroot.py
+++ b/tests/vmtests/test_zfsroot.py
@@ -106,11 +106,6 @@ class JammyTestZfsRoot(relbase.jammy, TestZfsRootAbs):
106 mem = 4096106 mem = 4096
107107
108108
109class ManticTestZfsRoot(relbase.mantic, TestZfsRootAbs):
110 __test__ = True
111 mem = 4096
112
113
114class TestZfsRootFsTypeAbs(TestZfsRootAbs):109class TestZfsRootFsTypeAbs(TestZfsRootAbs):
115 conf_file = "examples/tests/basic-zfsroot.yaml"110 conf_file = "examples/tests/basic-zfsroot.yaml"
116111
@@ -140,9 +135,4 @@ class JammyTestZfsRootFsType(relbase.jammy, TestZfsRootFsTypeAbs):
140 mem = 4096135 mem = 4096
141136
142137
143class ManticTestZfsRootFsType(relbase.mantic, TestZfsRootFsTypeAbs):
144 __test__ = True
145 mem = 4096
146
147
148# vi: ts=4 expandtab syntax=python138# vi: ts=4 expandtab syntax=python

Subscribers

People subscribed via source and target branches