Merge ~mwhudson/curtin:bye-groovy-hello-impish into curtin:master

Proposed by Michael Hudson-Doyle
Status: Rejected
Rejected by: Michael Hudson-Doyle
Proposed branch: ~mwhudson/curtin:bye-groovy-hello-impish
Merge into: curtin:master
Diff against target: 876 lines (+83/-85)
49 files modified
tests/vmtests/releases.py (+8/-8)
tests/vmtests/test_apt_config_cmd.py (+1/-1)
tests/vmtests/test_basic.py (+2/-2)
tests/vmtests/test_basic_dasd.py (+1/-1)
tests/vmtests/test_bcache_basic.py (+1/-1)
tests/vmtests/test_bcache_bug1718699.py (+1/-1)
tests/vmtests/test_bcache_ceph.py (+2/-2)
tests/vmtests/test_bcache_partitions.py (+1/-1)
tests/vmtests/test_fs_battery.py (+1/-1)
tests/vmtests/test_iscsi.py (+1/-1)
tests/vmtests/test_journald_reporter.py (+1/-1)
tests/vmtests/test_lvm.py (+1/-1)
tests/vmtests/test_lvm_iscsi.py (+1/-1)
tests/vmtests/test_lvm_raid.py (+1/-1)
tests/vmtests/test_lvm_root.py (+2/-2)
tests/vmtests/test_mdadm_bcache.py (+8/-8)
tests/vmtests/test_mdadm_iscsi.py (+1/-1)
tests/vmtests/test_multipath.py (+2/-2)
tests/vmtests/test_multipath_lvm.py (+2/-2)
tests/vmtests/test_network.py (+1/-1)
tests/vmtests/test_network_alias.py (+1/-1)
tests/vmtests/test_network_bonding.py (+1/-1)
tests/vmtests/test_network_bridging.py (+1/-1)
tests/vmtests/test_network_disabled.py (+3/-3)
tests/vmtests/test_network_ipv6.py (+0/-4)
tests/vmtests/test_network_ipv6_static.py (+1/-1)
tests/vmtests/test_network_ipv6_vlan.py (+1/-1)
tests/vmtests/test_network_mtu.py (+1/-1)
tests/vmtests/test_network_ovs.py (+2/-1)
tests/vmtests/test_network_static.py (+1/-1)
tests/vmtests/test_network_static_routes.py (+1/-1)
tests/vmtests/test_network_vlan.py (+4/-1)
tests/vmtests/test_nvme.py (+1/-5)
tests/vmtests/test_panic.py (+1/-1)
tests/vmtests/test_pollinate_useragent.py (+1/-1)
tests/vmtests/test_preserve.py (+1/-1)
tests/vmtests/test_preserve_bcache.py (+1/-1)
tests/vmtests/test_preserve_lvm.py (+1/-1)
tests/vmtests/test_preserve_partition_wipe_vg.py (+2/-2)
tests/vmtests/test_preserve_raid.py (+3/-3)
tests/vmtests/test_raid5_bcache.py (+1/-1)
tests/vmtests/test_raid_partition_to_disk.py (+1/-1)
tests/vmtests/test_reuse_lvm_member.py (+1/-1)
tests/vmtests/test_reuse_msdos_partitions.py (+1/-1)
tests/vmtests/test_reuse_raid_member.py (+2/-2)
tests/vmtests/test_reuse_uefi_esp.py (+1/-1)
tests/vmtests/test_simple.py (+3/-3)
tests/vmtests/test_uefi_basic.py (+2/-2)
tests/vmtests/test_zfsroot.py (+4/-2)
Reviewer Review Type Date Requested Status
Server Team CI bot continuous-integration Approve
curtin developers Pending
Review via email: mp+406432@code.launchpad.net

Commit message

remove groovy and add impish to the vmtests

using tools/vmtest-add-relase, tools/vmtest-remove-release

To post a comment you must log in.
Revision history for this message
Server Team CI bot (server-team-bot) wrote :
review: Needs Fixing (continuous-integration)
37ecd32... by Michael Hudson-Doyle

update tests/vmtests/release.py

Revision history for this message
Server Team CI bot (server-team-bot) wrote :
review: Needs Fixing (continuous-integration)
0b1924d... by Michael Hudson-Doyle

fix flakes

Revision history for this message
Server Team CI bot (server-team-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Michael Hudson-Doyle (mwhudson) wrote :

Dan did this better.

Unmerged commits

0b1924d... by Michael Hudson-Doyle

fix flakes

37ecd32... by Michael Hudson-Doyle

update tests/vmtests/release.py

a13adc0... by Michael Hudson-Doyle

remove groovy and add impish to the vmtests

using tools/vmtest-add-relase, tools/vmtest-remove-release

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 35b069b..31c4827 100644
--- a/tests/vmtests/releases.py
+++ b/tests/vmtests/releases.py
@@ -185,20 +185,20 @@ class _FocalBase(_UbuntuBase):
185 subarch = "ga-20.04"185 subarch = "ga-20.04"
186186
187187
188class _GroovyBase(_UbuntuBase):188class _HirsuteBase(_UbuntuBase):
189 release = "groovy"189 release = "hirsute"
190 target_release = "groovy"190 target_release = "hirsute"
191 mem = "2048"191 mem = "2048"
192 if _UbuntuBase.arch == "arm64":192 if _UbuntuBase.arch == "arm64":
193 subarch = "ga-20.10"193 subarch = "ga-20.10"
194194
195195
196class _HirsuteBase(_UbuntuBase):196class _ImpishBase(_UbuntuBase):
197 release = "hirsute"197 release = "impish"
198 target_release = "hirsute"198 target_release = "impish"
199 mem = "2048"199 mem = "2048"
200 if _UbuntuBase.arch == "arm64":200 if _UbuntuBase.arch == "arm64":
201 subarch = "ga-20.10"201 subarch = "ga-21.10"
202202
203203
204class _Releases(object):204class _Releases(object):
@@ -219,8 +219,8 @@ class _Releases(object):
219 disco = _DiscoBase219 disco = _DiscoBase
220 eoan = _EoanBase220 eoan = _EoanBase
221 focal = _FocalBase221 focal = _FocalBase
222 groovy = _GroovyBase
223 hirsute = _HirsuteBase222 hirsute = _HirsuteBase
223 impish = _ImpishBase
224224
225225
226class _CentosReleases(object):226class _CentosReleases(object):
diff --git a/tests/vmtests/test_apt_config_cmd.py b/tests/vmtests/test_apt_config_cmd.py
index a95612c..2fdd971 100644
--- a/tests/vmtests/test_apt_config_cmd.py
+++ b/tests/vmtests/test_apt_config_cmd.py
@@ -72,7 +72,7 @@ class HirsuteTestAptConfigCMDCMD(relbase.hirsute, TestAptConfigCMD):
72 __test__ = True72 __test__ = True
7373
7474
75class GroovyTestAptConfigCMDCMD(relbase.groovy, TestAptConfigCMD):75class ImpishTestAptConfigCMDCMD(relbase.impish, TestAptConfigCMD):
76 __test__ = True76 __test__ = True
7777
7878
diff --git a/tests/vmtests/test_basic.py b/tests/vmtests/test_basic.py
index 06f1f59..6059bd9 100644
--- a/tests/vmtests/test_basic.py
+++ b/tests/vmtests/test_basic.py
@@ -263,7 +263,7 @@ class HirsuteTestBasic(relbase.hirsute, TestBasicAbs):
263 __test__ = True263 __test__ = True
264264
265265
266class GroovyTestBasic(relbase.groovy, TestBasicAbs):266class ImpishTestBasic(relbase.impish, TestBasicAbs):
267 __test__ = True267 __test__ = True
268268
269269
@@ -387,7 +387,7 @@ class HirsuteTestScsiBasic(relbase.hirsute, TestBasicScsiAbs):
387 __test__ = True387 __test__ = True
388388
389389
390class GroovyTestScsiBasic(relbase.groovy, TestBasicScsiAbs):390class ImpishTestScsiBasic(relbase.impish, TestBasicScsiAbs):
391 __test__ = True391 __test__ = True
392392
393393
diff --git a/tests/vmtests/test_basic_dasd.py b/tests/vmtests/test_basic_dasd.py
index 49957b8..0aa35fd 100644
--- a/tests/vmtests/test_basic_dasd.py
+++ b/tests/vmtests/test_basic_dasd.py
@@ -60,7 +60,7 @@ class HirsuteTestBasicDasd(relbase.hirsute, TestBasicDasd):
60 __test__ = True60 __test__ = True
6161
6262
63class GroovyTestBasicDasd(relbase.groovy, TestBasicDasd):63class ImpishTestBasicDasd(relbase.impish, TestBasicDasd):
64 __test__ = True64 __test__ = True
6565
6666
diff --git a/tests/vmtests/test_bcache_basic.py b/tests/vmtests/test_bcache_basic.py
index e9ec1ea..490ae4c 100644
--- a/tests/vmtests/test_bcache_basic.py
+++ b/tests/vmtests/test_bcache_basic.py
@@ -72,7 +72,7 @@ class HirsuteBcacheBasic(relbase.hirsute, TestBcacheBasic):
72 __test__ = True72 __test__ = True
7373
7474
75class GroovyBcacheBasic(relbase.groovy, TestBcacheBasic):75class ImpishBcacheBasic(relbase.impish, TestBcacheBasic):
76 __test__ = True76 __test__ = True
7777
7878
diff --git a/tests/vmtests/test_bcache_bug1718699.py b/tests/vmtests/test_bcache_bug1718699.py
index a43ec0f..3b19c41 100644
--- a/tests/vmtests/test_bcache_bug1718699.py
+++ b/tests/vmtests/test_bcache_bug1718699.py
@@ -27,7 +27,7 @@ class HirsuteTestBcacheBug1718699(relbase.hirsute, TestBcacheBug1718699):
27 __test__ = True27 __test__ = True
2828
2929
30class GroovyTestBcacheBug1718699(relbase.groovy, TestBcacheBug1718699):30class ImpishTestBcacheBug1718699(relbase.impish, TestBcacheBug1718699):
31 __test__ = True31 __test__ = True
3232
3333
diff --git a/tests/vmtests/test_bcache_ceph.py b/tests/vmtests/test_bcache_ceph.py
index 53e050c..713ade9 100644
--- a/tests/vmtests/test_bcache_ceph.py
+++ b/tests/vmtests/test_bcache_ceph.py
@@ -83,7 +83,7 @@ class HirsuteTestBcacheCeph(relbase.hirsute, TestBcacheCeph):
83 __test__ = True83 __test__ = True
8484
8585
86class GroovyTestBcacheCeph(relbase.groovy, TestBcacheCeph):86class ImpishTestBcacheCeph(relbase.impish, TestBcacheCeph):
87 __test__ = True87 __test__ = True
8888
8989
@@ -117,7 +117,7 @@ class HirsuteTestBcacheCephLvm(relbase.hirsute, TestBcacheCephLvm):
117 __test__ = True117 __test__ = True
118118
119119
120class GroovyTestBcacheCephLvm(relbase.groovy, TestBcacheCephLvm):120class ImpishTestBcacheCephLvm(relbase.impish, TestBcacheCephLvm):
121 __test__ = True121 __test__ = True
122122
123123
diff --git a/tests/vmtests/test_bcache_partitions.py b/tests/vmtests/test_bcache_partitions.py
index a69d2ef..6268fd5 100644
--- a/tests/vmtests/test_bcache_partitions.py
+++ b/tests/vmtests/test_bcache_partitions.py
@@ -33,7 +33,7 @@ class HirsuteTestBcachePartitions(relbase.hirsute, TestBcachePartitions):
33 __test__ = True33 __test__ = True
3434
3535
36class GroovyTestBcachePartitions(relbase.groovy, TestBcachePartitions):36class ImpishTestBcachePartitions(relbase.impish, TestBcachePartitions):
37 __test__ = True37 __test__ = True
3838
3939
diff --git a/tests/vmtests/test_fs_battery.py b/tests/vmtests/test_fs_battery.py
index cc39f4a..7d70f9c 100644
--- a/tests/vmtests/test_fs_battery.py
+++ b/tests/vmtests/test_fs_battery.py
@@ -247,7 +247,7 @@ class HirsuteTestFsBattery(relbase.hirsute, TestFsBattery):
247 __test__ = True247 __test__ = True
248248
249249
250class GroovyTestFsBattery(relbase.groovy, TestFsBattery):250class ImpishTestFsBattery(relbase.impish, TestFsBattery):
251 __test__ = True251 __test__ = True
252252
253253
diff --git a/tests/vmtests/test_iscsi.py b/tests/vmtests/test_iscsi.py
index c46ac30..2fd9866 100644
--- a/tests/vmtests/test_iscsi.py
+++ b/tests/vmtests/test_iscsi.py
@@ -80,7 +80,7 @@ class HirsuteTestIscsiBasic(relbase.hirsute, TestBasicIscsiAbs):
80 __test__ = True80 __test__ = True
8181
8282
83class GroovyTestIscsiBasic(relbase.groovy, TestBasicIscsiAbs):83class ImpishTestIscsiBasic(relbase.impish, TestBasicIscsiAbs):
84 __test__ = True84 __test__ = True
8585
8686
diff --git a/tests/vmtests/test_journald_reporter.py b/tests/vmtests/test_journald_reporter.py
index 3979aa7..064d71a 100644
--- a/tests/vmtests/test_journald_reporter.py
+++ b/tests/vmtests/test_journald_reporter.py
@@ -40,7 +40,7 @@ class HirsuteTestJournaldReporter(relbase.hirsute, TestJournaldReporter):
40 __test__ = True40 __test__ = True
4141
4242
43class GroovyTestJournaldReporter(relbase.groovy, TestJournaldReporter):43class ImpishTestJournaldReporter(relbase.impish, TestJournaldReporter):
44 __test__ = True44 __test__ = True
4545
4646
diff --git a/tests/vmtests/test_lvm.py b/tests/vmtests/test_lvm.py
index d169eeb..a0ce90d 100644
--- a/tests/vmtests/test_lvm.py
+++ b/tests/vmtests/test_lvm.py
@@ -85,7 +85,7 @@ class HirsuteTestLvm(relbase.hirsute, TestLvmAbs):
85 __test__ = True85 __test__ = True
8686
8787
88class GroovyTestLvm(relbase.groovy, TestLvmAbs):88class ImpishTestLvm(relbase.impish, TestLvmAbs):
89 __test__ = True89 __test__ = True
9090
9191
diff --git a/tests/vmtests/test_lvm_iscsi.py b/tests/vmtests/test_lvm_iscsi.py
index 0cf020e..463d863 100644
--- a/tests/vmtests/test_lvm_iscsi.py
+++ b/tests/vmtests/test_lvm_iscsi.py
@@ -103,7 +103,7 @@ class HirsuteTestIscsiLvm(relbase.hirsute, TestLvmIscsiAbs):
103 __test__ = True103 __test__ = True
104104
105105
106class GroovyTestIscsiLvm(relbase.groovy, TestLvmIscsiAbs):106class ImpishTestIscsiLvm(relbase.impish, TestLvmIscsiAbs):
107 __test__ = True107 __test__ = True
108108
109109
diff --git a/tests/vmtests/test_lvm_raid.py b/tests/vmtests/test_lvm_raid.py
index 3fe71a9..650fc25 100644
--- a/tests/vmtests/test_lvm_raid.py
+++ b/tests/vmtests/test_lvm_raid.py
@@ -63,5 +63,5 @@ class HirsuteTestLvmOverRaid(relbase.hirsute, TestLvmOverRaidAbs):
63 __test__ = True63 __test__ = True
6464
6565
66class GroovyTestLvmOverRaid(relbase.groovy, TestLvmOverRaidAbs):66class ImpishTestLvmOverRaid(relbase.impish, TestLvmOverRaidAbs):
67 __test__ = True67 __test__ = True
diff --git a/tests/vmtests/test_lvm_root.py b/tests/vmtests/test_lvm_root.py
index c910160..bc09e8d 100644
--- a/tests/vmtests/test_lvm_root.py
+++ b/tests/vmtests/test_lvm_root.py
@@ -101,7 +101,7 @@ class HirsuteTestLvmRootExt4(relbase.hirsute, TestLvmRootAbs):
101 }101 }
102102
103103
104class GroovyTestLvmRootExt4(relbase.groovy, TestLvmRootAbs):104class ImpishTestLvmRootExt4(relbase.impish, TestLvmRootAbs):
105 __test__ = True105 __test__ = True
106 conf_replace = {106 conf_replace = {
107 '__ROOTFS_FORMAT__': 'ext4',107 '__ROOTFS_FORMAT__': 'ext4',
@@ -162,7 +162,7 @@ class HirsuteTestUefiLvmRootExt4(relbase.hirsute, TestUefiLvmRootAbs):
162 }162 }
163163
164164
165class GroovyTestUefiLvmRootExt4(relbase.groovy, TestUefiLvmRootAbs):165class ImpishTestUefiLvmRootExt4(relbase.impish, TestUefiLvmRootAbs):
166 __test__ = True166 __test__ = True
167 conf_replace = {167 conf_replace = {
168 '__BOOTFS_FORMAT__': 'ext4',168 '__BOOTFS_FORMAT__': 'ext4',
diff --git a/tests/vmtests/test_mdadm_bcache.py b/tests/vmtests/test_mdadm_bcache.py
index 62f25e7..d90f478 100644
--- a/tests/vmtests/test_mdadm_bcache.py
+++ b/tests/vmtests/test_mdadm_bcache.py
@@ -162,7 +162,7 @@ class HirsuteTestMdadmBcache(relbase.hirsute, TestMdadmBcacheAbs):
162 __test__ = True162 __test__ = True
163163
164164
165class GroovyTestMdadmBcache(relbase.groovy, TestMdadmBcacheAbs):165class ImpishTestMdadmBcache(relbase.impish, TestMdadmBcacheAbs):
166 __test__ = True166 __test__ = True
167167
168168
@@ -211,7 +211,7 @@ class HirsuteTestMirrorboot(relbase.hirsute, TestMirrorbootAbs):
211 __test__ = True211 __test__ = True
212212
213213
214class GroovyTestMirrorboot(relbase.groovy, TestMirrorbootAbs):214class ImpishTestMirrorboot(relbase.impish, TestMirrorbootAbs):
215 __test__ = True215 __test__ = True
216216
217217
@@ -265,7 +265,7 @@ class HirsuteTestMirrorbootPartitions(relbase.hirsute,
265 __test__ = True265 __test__ = True
266266
267267
268class GroovyTestMirrorbootPartitions(relbase.groovy,268class ImpishTestMirrorbootPartitions(relbase.impish,
269 TestMirrorbootPartitionsAbs):269 TestMirrorbootPartitionsAbs):
270 __test__ = True270 __test__ = True
271271
@@ -365,7 +365,7 @@ class HirsuteTestMirrorbootPartitionsUEFI(relbase.hirsute,
365 __test__ = True365 __test__ = True
366366
367367
368class GroovyTestMirrorbootPartitionsUEFI(relbase.groovy,368class ImpishTestMirrorbootPartitionsUEFI(relbase.impish,
369 TestMirrorbootPartitionsUEFIAbs):369 TestMirrorbootPartitionsUEFIAbs):
370 __test__ = True370 __test__ = True
371371
@@ -418,7 +418,7 @@ class HirsuteTestRaid5boot(relbase.hirsute, TestRaid5bootAbs):
418 __test__ = True418 __test__ = True
419419
420420
421class GroovyTestRaid5boot(relbase.groovy, TestRaid5bootAbs):421class ImpishTestRaid5boot(relbase.impish, TestRaid5bootAbs):
422 __test__ = True422 __test__ = True
423423
424424
@@ -483,7 +483,7 @@ class HirsuteTestRaid6boot(relbase.hirsute, TestRaid6bootAbs):
483 __test__ = True483 __test__ = True
484484
485485
486class GroovyTestRaid6boot(relbase.groovy, TestRaid6bootAbs):486class ImpishTestRaid6boot(relbase.impish, TestRaid6bootAbs):
487 __test__ = True487 __test__ = True
488488
489489
@@ -534,7 +534,7 @@ class HirsuteTestRaid10boot(relbase.hirsute, TestRaid10bootAbs):
534 __test__ = True534 __test__ = True
535535
536536
537class GroovyTestRaid10boot(relbase.groovy, TestRaid10bootAbs):537class ImpishTestRaid10boot(relbase.impish, TestRaid10bootAbs):
538 __test__ = True538 __test__ = True
539539
540540
@@ -642,7 +642,7 @@ class HirsuteTestAllindata(relbase.hirsute, TestAllindataAbs):
642 __test__ = True642 __test__ = True
643643
644644
645class GroovyTestAllindata(relbase.groovy, TestAllindataAbs):645class ImpishTestAllindata(relbase.impish, TestAllindataAbs):
646 __test__ = True646 __test__ = True
647647
648648
diff --git a/tests/vmtests/test_mdadm_iscsi.py b/tests/vmtests/test_mdadm_iscsi.py
index 6ad6b72..f6f0b22 100644
--- a/tests/vmtests/test_mdadm_iscsi.py
+++ b/tests/vmtests/test_mdadm_iscsi.py
@@ -58,7 +58,7 @@ class HirsuteTestIscsiMdadm(relbase.hirsute, TestMdadmIscsiAbs):
58 __test__ = True58 __test__ = True
5959
6060
61class GroovyTestIscsiMdadm(relbase.groovy, TestMdadmIscsiAbs):61class ImpishTestIscsiMdadm(relbase.impish, TestMdadmIscsiAbs):
62 __test__ = True62 __test__ = True
6363
6464
diff --git a/tests/vmtests/test_multipath.py b/tests/vmtests/test_multipath.py
index 163b73a..ac85a58 100644
--- a/tests/vmtests/test_multipath.py
+++ b/tests/vmtests/test_multipath.py
@@ -166,7 +166,7 @@ class HirsuteTestMultipathBasic(relbase.hirsute, TestMultipathBasicAbs):
166 __test__ = True166 __test__ = True
167167
168168
169class GroovyTestMultipathBasic(relbase.groovy, TestMultipathBasicAbs):169class ImpishTestMultipathBasic(relbase.impish, TestMultipathBasicAbs):
170 __test__ = True170 __test__ = True
171171
172172
@@ -182,7 +182,7 @@ class HirsuteTestMultipathReuse(relbase.hirsute, TestMultipathReuseAbs):
182 __test__ = True182 __test__ = True
183183
184184
185class GroovyTestMultipathReuse(relbase.groovy, TestMultipathReuseAbs):185class ImpishTestMultipathReuse(relbase.impish, TestMultipathReuseAbs):
186 __test__ = True186 __test__ = True
187187
188188
diff --git a/tests/vmtests/test_multipath_lvm.py b/tests/vmtests/test_multipath_lvm.py
index f5f5537..97d797e 100644
--- a/tests/vmtests/test_multipath_lvm.py
+++ b/tests/vmtests/test_multipath_lvm.py
@@ -64,7 +64,7 @@ class HirsuteTestMultipathLvm(relbase.hirsute, TestMultipathLvmAbs):
64 __test__ = True64 __test__ = True
6565
6666
67class GroovyTestMultipathLvm(relbase.groovy, TestMultipathLvmAbs):67class ImpishTestMultipathLvm(relbase.impish, TestMultipathLvmAbs):
68 __test__ = True68 __test__ = True
6969
7070
@@ -82,7 +82,7 @@ class HirsuteTestMultipathLvmPartWipe(relbase.hirsute,
82 __test__ = True82 __test__ = True
8383
8484
85class GroovyTestMultipathLvmPartWipe(relbase.groovy,85class ImpishTestMultipathLvmPartWipe(relbase.impish,
86 TestMultipathLvmPartWipeAbs):86 TestMultipathLvmPartWipeAbs):
87 __test__ = True87 __test__ = True
8888
diff --git a/tests/vmtests/test_network.py b/tests/vmtests/test_network.py
index db16bd4..1b42493 100644
--- a/tests/vmtests/test_network.py
+++ b/tests/vmtests/test_network.py
@@ -482,7 +482,7 @@ class HirsuteTestNetworkBasic(relbase.hirsute, TestNetworkBasicAbs):
482 __test__ = True482 __test__ = True
483483
484484
485class GroovyTestNetworkBasic(relbase.groovy, TestNetworkBasicAbs):485class ImpishTestNetworkBasic(relbase.impish, TestNetworkBasicAbs):
486 __test__ = True486 __test__ = True
487487
488488
diff --git a/tests/vmtests/test_network_alias.py b/tests/vmtests/test_network_alias.py
index 9f460fa..8b58edd 100644
--- a/tests/vmtests/test_network_alias.py
+++ b/tests/vmtests/test_network_alias.py
@@ -60,7 +60,7 @@ class HirsuteTestNetworkAlias(relbase.hirsute, TestNetworkAliasAbs):
60 __test__ = True60 __test__ = True
6161
6262
63class GroovyTestNetworkAlias(relbase.groovy, TestNetworkAliasAbs):63class ImpishTestNetworkAlias(relbase.impish, TestNetworkAliasAbs):
64 __test__ = True64 __test__ = True
6565
6666
diff --git a/tests/vmtests/test_network_bonding.py b/tests/vmtests/test_network_bonding.py
index f58065d..73bcf60 100644
--- a/tests/vmtests/test_network_bonding.py
+++ b/tests/vmtests/test_network_bonding.py
@@ -65,7 +65,7 @@ class HirsuteTestBonding(relbase.hirsute, TestNetworkBondingAbs):
65 __test__ = True65 __test__ = True
6666
6767
68class GroovyTestBonding(relbase.groovy, TestNetworkBondingAbs):68class ImpishTestBonding(relbase.impish, TestNetworkBondingAbs):
69 __test__ = True69 __test__ = True
7070
7171
diff --git a/tests/vmtests/test_network_bridging.py b/tests/vmtests/test_network_bridging.py
index b0d5962..93ecc4b 100644
--- a/tests/vmtests/test_network_bridging.py
+++ b/tests/vmtests/test_network_bridging.py
@@ -244,7 +244,7 @@ class HirsuteTestBridging(relbase.hirsute, TestBridgeNetworkAbs):
244 __test__ = True244 __test__ = True
245245
246246
247class GroovyTestBridging(relbase.groovy, TestBridgeNetworkAbs):247class ImpishTestBridging(relbase.impish, TestBridgeNetworkAbs):
248 __test__ = True248 __test__ = True
249249
250250
diff --git a/tests/vmtests/test_network_disabled.py b/tests/vmtests/test_network_disabled.py
index 9079f8e..d56ebde 100644
--- a/tests/vmtests/test_network_disabled.py
+++ b/tests/vmtests/test_network_disabled.py
@@ -67,7 +67,7 @@ class HirsuteCurtinDisableNetworkRendering(relbase.hirsute, TestKlass1):
67 __test__ = True67 __test__ = True
6868
6969
70class GroovyCurtinDisableNetworkRendering(relbase.groovy, TestKlass1):70class ImpishCurtinDisableNetworkRendering(relbase.impish, TestKlass1):
71 __test__ = True71 __test__ = True
7272
7373
@@ -79,7 +79,7 @@ class HirsuteCurtinDisableCloudInitNetworking(relbase.hirsute, TestKlass2):
79 __test__ = True79 __test__ = True
8080
8181
82class GroovyCurtinDisableCloudInitNetworking(relbase.groovy, TestKlass2):82class ImpishCurtinDisableCloudInitNetworking(relbase.impish, TestKlass2):
83 __test__ = True83 __test__ = True
8484
8585
@@ -92,7 +92,7 @@ class HirsuteCurtinDisableCloudInitNetworkingVersion1(relbase.hirsute,
92 __test__ = True92 __test__ = True
9393
9494
95class GroovyCurtinDisableCloudInitNetworkingVersion1(relbase.groovy,95class ImpishCurtinDisableCloudInitNetworkingVersion1(relbase.impish,
96 TestKlass3):96 TestKlass3):
97 __test__ = True97 __test__ = True
9898
diff --git a/tests/vmtests/test_network_ipv6.py b/tests/vmtests/test_network_ipv6.py
index d76d295..7802855 100644
--- a/tests/vmtests/test_network_ipv6.py
+++ b/tests/vmtests/test_network_ipv6.py
@@ -53,10 +53,6 @@ class BionicTestNetworkIPV6(relbase.bionic, TestNetworkIPV6Abs):
53 __test__ = True53 __test__ = True
5454
5555
56class GroovyTestNetworkIPV6(relbase.groovy, TestNetworkIPV6Abs):
57 __test__ = True
58
59
60class Centos66TestNetworkIPV6(centos_relbase.centos66_xenial,56class Centos66TestNetworkIPV6(centos_relbase.centos66_xenial,
61 CentosTestNetworkIPV6Abs):57 CentosTestNetworkIPV6Abs):
62 __test__ = True58 __test__ = True
diff --git a/tests/vmtests/test_network_ipv6_static.py b/tests/vmtests/test_network_ipv6_static.py
index c3e5b5a..f24aab5 100644
--- a/tests/vmtests/test_network_ipv6_static.py
+++ b/tests/vmtests/test_network_ipv6_static.py
@@ -31,7 +31,7 @@ class HirsuteTestNetworkIPV6Static(relbase.hirsute, TestNetworkIPV6StaticAbs):
31 __test__ = True31 __test__ = True
3232
3333
34class GroovyTestNetworkIPV6Static(relbase.groovy, TestNetworkIPV6StaticAbs):34class ImpishTestNetworkIPV6Static(relbase.impish, TestNetworkIPV6StaticAbs):
35 __test__ = True35 __test__ = True
3636
3737
diff --git a/tests/vmtests/test_network_ipv6_vlan.py b/tests/vmtests/test_network_ipv6_vlan.py
index 96c056b..a6eae41 100644
--- a/tests/vmtests/test_network_ipv6_vlan.py
+++ b/tests/vmtests/test_network_ipv6_vlan.py
@@ -30,7 +30,7 @@ class HirsuteTestNetworkIPV6Vlan(relbase.hirsute, TestNetworkIPV6VlanAbs):
30 __test__ = True30 __test__ = True
3131
3232
33class GroovyTestNetworkIPV6Vlan(relbase.groovy, TestNetworkIPV6VlanAbs):33class ImpishTestNetworkIPV6Vlan(relbase.impish, TestNetworkIPV6VlanAbs):
34 __test__ = True34 __test__ = True
3535
3636
diff --git a/tests/vmtests/test_network_mtu.py b/tests/vmtests/test_network_mtu.py
index 8e6e57c..a36a752 100644
--- a/tests/vmtests/test_network_mtu.py
+++ b/tests/vmtests/test_network_mtu.py
@@ -197,7 +197,7 @@ class HirsuteTestNetworkMtu(relbase.hirsute, TestNetworkMtuNetworkdAbs):
197 __test__ = True197 __test__ = True
198198
199199
200class GroovyTestNetworkMtu(relbase.groovy, TestNetworkMtuNetworkdAbs):200class ImpishTestNetworkMtu(relbase.impish, TestNetworkMtuNetworkdAbs):
201 __test__ = True201 __test__ = True
202202
203203
diff --git a/tests/vmtests/test_network_ovs.py b/tests/vmtests/test_network_ovs.py
index a32d637..3e8699d 100644
--- a/tests/vmtests/test_network_ovs.py
+++ b/tests/vmtests/test_network_ovs.py
@@ -42,7 +42,8 @@ class HirsuteTestNetworkOvs(relbase.hirsute, TestNetworkOvsAbs):
42 __test__ = True42 __test__ = True
4343
4444
45class GroovyTestNetworkOvs(relbase.groovy, TestNetworkOvsAbs):45class ImpishTestNetworkOvs(relbase.impish, TestNetworkOvsAbs):
46 __test__ = True46 __test__ = True
4747
48
48# vi: ts=4 expandtab syntax=python49# vi: ts=4 expandtab syntax=python
diff --git a/tests/vmtests/test_network_static.py b/tests/vmtests/test_network_static.py
index abcbb75..95960af 100644
--- a/tests/vmtests/test_network_static.py
+++ b/tests/vmtests/test_network_static.py
@@ -36,7 +36,7 @@ class HirsuteTestNetworkStatic(relbase.hirsute, TestNetworkStaticAbs):
36 __test__ = True36 __test__ = True
3737
3838
39class GroovyTestNetworkStatic(relbase.groovy, TestNetworkStaticAbs):39class ImpishTestNetworkStatic(relbase.impish, TestNetworkStaticAbs):
40 __test__ = True40 __test__ = True
4141
4242
diff --git a/tests/vmtests/test_network_static_routes.py b/tests/vmtests/test_network_static_routes.py
index e158f9a..eb096ee 100644
--- a/tests/vmtests/test_network_static_routes.py
+++ b/tests/vmtests/test_network_static_routes.py
@@ -38,7 +38,7 @@ class HirsuteTestNetworkStaticRoutes(relbase.hirsute,
38 __test__ = True38 __test__ = True
3939
4040
41class GroovyTestNetworkStaticRoutes(relbase.groovy,41class ImpishTestNetworkStaticRoutes(relbase.impish,
42 TestNetworkStaticRoutesAbs):42 TestNetworkStaticRoutesAbs):
43 __test__ = True43 __test__ = True
4444
diff --git a/tests/vmtests/test_network_vlan.py b/tests/vmtests/test_network_vlan.py
index af52af0..1f78cfa 100644
--- a/tests/vmtests/test_network_vlan.py
+++ b/tests/vmtests/test_network_vlan.py
@@ -90,9 +90,12 @@ class HirsuteTestNetworkVlan(relbase.hirsute, TestNetworkVlanAbs):
90 return super().test_ip_output()90 return super().test_ip_output()
9191
9292
93class GroovyTestNetworkVlan(relbase.groovy, TestNetworkVlanAbs):93class ImpishTestNetworkVlan(relbase.impish, TestNetworkVlanAbs):
94 __test__ = True94 __test__ = True
9595
96 def test_ip_output(self):
97 return super().test_ip_output()
98
9699
97class Centos66TestNetworkVlan(centos_relbase.centos66_xenial,100class Centos66TestNetworkVlan(centos_relbase.centos66_xenial,
98 CentosTestNetworkVlanAbs):101 CentosTestNetworkVlanAbs):
diff --git a/tests/vmtests/test_nvme.py b/tests/vmtests/test_nvme.py
index 9531a80..01f5a54 100644
--- a/tests/vmtests/test_nvme.py
+++ b/tests/vmtests/test_nvme.py
@@ -73,10 +73,6 @@ class BionicTestNvme(relbase.bionic, TestNvmeAbs):
73 __test__ = True73 __test__ = True
7474
7575
76class GroovyTestNvme(relbase.groovy, TestNvmeAbs):
77 __test__ = True
78
79
80class TestNvmeBcacheAbs(TestNvmeAbs):76class TestNvmeBcacheAbs(TestNvmeAbs):
81 arch_skip = [77 arch_skip = [
82 "s390x", # nvme is a pci device, no pci on s390x78 "s390x", # nvme is a pci device, no pci on s390x
@@ -147,7 +143,7 @@ class HirsuteTestNvmeBcache(relbase.hirsute, TestNvmeBcacheAbs):
147 __test__ = True143 __test__ = True
148144
149145
150class GroovyTestNvmeBcache(relbase.groovy, TestNvmeBcacheAbs):146class ImpishTestNvmeBcache(relbase.impish, TestNvmeBcacheAbs):
151 __test__ = True147 __test__ = True
152148
153149
diff --git a/tests/vmtests/test_panic.py b/tests/vmtests/test_panic.py
index e841f2a..a5533f9 100644
--- a/tests/vmtests/test_panic.py
+++ b/tests/vmtests/test_panic.py
@@ -33,7 +33,7 @@ class HirsuteTestInstallPanic(relbase.hirsute, TestInstallPanic):
33 __test__ = True33 __test__ = True
3434
3535
36class GroovyTestInstallPanic(relbase.groovy, TestInstallPanic):36class ImpishTestInstallPanic(relbase.impish, TestInstallPanic):
37 __test__ = True37 __test__ = True
3838
3939
diff --git a/tests/vmtests/test_pollinate_useragent.py b/tests/vmtests/test_pollinate_useragent.py
index 4aeefd8..fa33ec5 100644
--- a/tests/vmtests/test_pollinate_useragent.py
+++ b/tests/vmtests/test_pollinate_useragent.py
@@ -69,7 +69,7 @@ class HirsuteTestPollinateUserAgent(relbase.hirsute, TestPollinateUserAgent):
69 __test__ = True69 __test__ = True
7070
7171
72class GroovyTestPollinateUserAgent(relbase.groovy, TestPollinateUserAgent):72class ImpishTestPollinateUserAgent(relbase.impish, TestPollinateUserAgent):
73 __test__ = True73 __test__ = True
7474
7575
diff --git a/tests/vmtests/test_preserve.py b/tests/vmtests/test_preserve.py
index 28dd34f..74fe29e 100644
--- a/tests/vmtests/test_preserve.py
+++ b/tests/vmtests/test_preserve.py
@@ -33,7 +33,7 @@ class HirsuteTestPreserve(relbase.hirsute, TestPreserve):
33 __test__ = True33 __test__ = True
3434
3535
36class GroovyTestPreserve(relbase.groovy, TestPreserve):36class ImpishTestPreserve(relbase.impish, TestPreserve):
37 __test__ = True37 __test__ = True
3838
3939
diff --git a/tests/vmtests/test_preserve_bcache.py b/tests/vmtests/test_preserve_bcache.py
index 2e6b412..46edd3f 100644
--- a/tests/vmtests/test_preserve_bcache.py
+++ b/tests/vmtests/test_preserve_bcache.py
@@ -64,7 +64,7 @@ class HirsuteTestPreserveBcache(relbase.hirsute, TestPreserveBcache):
64 __test__ = True64 __test__ = True
6565
6666
67class GroovyTestPreserveBcache(relbase.groovy, TestPreserveBcache):67class ImpishTestPreserveBcache(relbase.impish, TestPreserveBcache):
68 __test__ = True68 __test__ = True
6969
7070
diff --git a/tests/vmtests/test_preserve_lvm.py b/tests/vmtests/test_preserve_lvm.py
index 274e9c6..0c09c11 100644
--- a/tests/vmtests/test_preserve_lvm.py
+++ b/tests/vmtests/test_preserve_lvm.py
@@ -77,7 +77,7 @@ class HirsuteTestLvmPreserve(relbase.hirsute, TestLvmPreserveAbs):
77 __test__ = True77 __test__ = True
7878
7979
80class GroovyTestLvmPreserve(relbase.groovy, TestLvmPreserveAbs):80class ImpishTestLvmPreserve(relbase.impish, TestLvmPreserveAbs):
81 __test__ = True81 __test__ = True
8282
8383
diff --git a/tests/vmtests/test_preserve_partition_wipe_vg.py b/tests/vmtests/test_preserve_partition_wipe_vg.py
index 2469615..4db6c2b 100644
--- a/tests/vmtests/test_preserve_partition_wipe_vg.py
+++ b/tests/vmtests/test_preserve_partition_wipe_vg.py
@@ -33,7 +33,7 @@ class HirsuteTestPreserveWipeLvm(relbase.hirsute, TestPreserveWipeLvm):
33 __test__ = True33 __test__ = True
3434
3535
36class GroovyTestPreserveWipeLvm(relbase.groovy, TestPreserveWipeLvm):36class ImpishTestPreserveWipeLvm(relbase.impish, TestPreserveWipeLvm):
37 __test__ = True37 __test__ = True
3838
3939
@@ -61,7 +61,7 @@ class HirsuteTestPreserveWipeLvmSimple(relbase.hirsute,
61 __test__ = True61 __test__ = True
6262
6363
64class GroovyTestPreserveWipeLvmSimple(relbase.groovy,64class ImpishTestPreserveWipeLvmSimple(relbase.impish,
65 TestPreserveWipeLvmSimple):65 TestPreserveWipeLvmSimple):
66 __test__ = True66 __test__ = True
6767
diff --git a/tests/vmtests/test_preserve_raid.py b/tests/vmtests/test_preserve_raid.py
index 8c85a20..4bb977e 100644
--- a/tests/vmtests/test_preserve_raid.py
+++ b/tests/vmtests/test_preserve_raid.py
@@ -33,7 +33,7 @@ class HirsuteTestPreserveRAID(relbase.hirsute, TestPreserveRAID):
33 __test__ = True33 __test__ = True
3434
3535
36class GroovyTestPreserveRAID(relbase.groovy, TestPreserveRAID):36class ImpishTestPreserveRAID(relbase.impish, TestPreserveRAID):
37 __test__ = True37 __test__ = True
3838
3939
@@ -67,8 +67,8 @@ class HirsuteTestPartitionExistingRAID(
67 __test__ = True67 __test__ = True
6868
6969
70class GroovyTestPartitionExistingRAID(70class ImpishTestPartitionExistingRAID(
71 relbase.groovy, TestPartitionExistingRAID):71 relbase.impish, TestPartitionExistingRAID):
72 __test__ = True72 __test__ = True
7373
7474
diff --git a/tests/vmtests/test_raid5_bcache.py b/tests/vmtests/test_raid5_bcache.py
index 493c0fd..e682f34 100644
--- a/tests/vmtests/test_raid5_bcache.py
+++ b/tests/vmtests/test_raid5_bcache.py
@@ -96,7 +96,7 @@ class HirsuteTestRaid5Bcache(relbase.hirsute, TestMdadmBcacheAbs):
96 __test__ = True96 __test__ = True
9797
9898
99class GroovyTestRaid5Bcache(relbase.groovy, TestMdadmBcacheAbs):99class ImpishTestRaid5Bcache(relbase.impish, TestMdadmBcacheAbs):
100 __test__ = True100 __test__ = True
101101
102102
diff --git a/tests/vmtests/test_raid_partition_to_disk.py b/tests/vmtests/test_raid_partition_to_disk.py
index aaa73f2..a2bd1be 100644
--- a/tests/vmtests/test_raid_partition_to_disk.py
+++ b/tests/vmtests/test_raid_partition_to_disk.py
@@ -26,7 +26,7 @@ class HirsuteTestRAIDPartitionToDisk(relbase.hirsute, TestRAIDPartitionToDisk):
26 __test__ = True26 __test__ = True
2727
2828
29class GroovyTestRAIDPartitionToDisk(relbase.groovy, TestRAIDPartitionToDisk):29class ImpishTestRAIDPartitionToDisk(relbase.impish, TestRAIDPartitionToDisk):
30 __test__ = True30 __test__ = True
3131
3232
diff --git a/tests/vmtests/test_reuse_lvm_member.py b/tests/vmtests/test_reuse_lvm_member.py
index eba3d1b..81c0cb0 100644
--- a/tests/vmtests/test_reuse_lvm_member.py
+++ b/tests/vmtests/test_reuse_lvm_member.py
@@ -31,7 +31,7 @@ class HirsuteTestReuseLVMMemberPartition(relbase.hirsute,
31 __test__ = True31 __test__ = True
3232
3333
34class GroovyTestReuseLVMMemberPartition(relbase.groovy,34class ImpishTestReuseLVMMemberPartition(relbase.impish,
35 TestReuseLVMMemberPartition):35 TestReuseLVMMemberPartition):
36 __test__ = True36 __test__ = True
3737
diff --git a/tests/vmtests/test_reuse_msdos_partitions.py b/tests/vmtests/test_reuse_msdos_partitions.py
index 77431bf..ed52f5b 100644
--- a/tests/vmtests/test_reuse_msdos_partitions.py
+++ b/tests/vmtests/test_reuse_msdos_partitions.py
@@ -28,7 +28,7 @@ class HirsuteTestReuseMSDOSPartitions(relbase.hirsute,
28 __test__ = True28 __test__ = True
2929
3030
31class GroovyTestReuseMSDOSPartitions(relbase.groovy,31class ImpishTestReuseMSDOSPartitions(relbase.impish,
32 TestReuseMSDOSPartitions):32 TestReuseMSDOSPartitions):
33 __test__ = True33 __test__ = True
3434
diff --git a/tests/vmtests/test_reuse_raid_member.py b/tests/vmtests/test_reuse_raid_member.py
index e3723e8..7611140 100644
--- a/tests/vmtests/test_reuse_raid_member.py
+++ b/tests/vmtests/test_reuse_raid_member.py
@@ -36,7 +36,7 @@ class HirsuteTestReuseRAIDMember(relbase.hirsute, TestReuseRAIDMember):
36 __test__ = True36 __test__ = True
3737
3838
39class GroovyTestReuseRAIDMember(relbase.groovy, TestReuseRAIDMember):39class ImpishTestReuseRAIDMember(relbase.impish, TestReuseRAIDMember):
40 __test__ = True40 __test__ = True
4141
4242
@@ -55,7 +55,7 @@ class HirsuteTestReuseRAIDMemberPartition(relbase.hirsute,
55 __test__ = True55 __test__ = True
5656
5757
58class GroovyTestReuseRAIDMemberPartition(relbase.groovy,58class ImpishTestReuseRAIDMemberPartition(relbase.impish,
59 TestReuseRAIDMemberPartition):59 TestReuseRAIDMemberPartition):
60 __test__ = True60 __test__ = True
6161
diff --git a/tests/vmtests/test_reuse_uefi_esp.py b/tests/vmtests/test_reuse_uefi_esp.py
index 46f3a57..958e43f 100644
--- a/tests/vmtests/test_reuse_uefi_esp.py
+++ b/tests/vmtests/test_reuse_uefi_esp.py
@@ -49,7 +49,7 @@ class HirsuteTestUefiReuseEsp(relbase.hirsute, TestUefiReuseEspAbs):
49 return super().test_efiboot_menu_has_one_distro_entry()49 return super().test_efiboot_menu_has_one_distro_entry()
5050
5151
52class GroovyTestUefiReuseEsp(relbase.groovy, TestUefiReuseEspAbs):52class ImpishTestUefiReuseEsp(relbase.impish, TestUefiReuseEspAbs):
53 __test__ = True53 __test__ = True
5454
55 def test_efiboot_menu_has_one_distro_entry(self):55 def test_efiboot_menu_has_one_distro_entry(self):
diff --git a/tests/vmtests/test_simple.py b/tests/vmtests/test_simple.py
index 83dca96..0ee87fc 100644
--- a/tests/vmtests/test_simple.py
+++ b/tests/vmtests/test_simple.py
@@ -63,7 +63,7 @@ class HirsuteTestSimple(relbase.hirsute, TestSimple):
63 self.output_files_exist(["netplan.yaml"])63 self.output_files_exist(["netplan.yaml"])
6464
6565
66class GroovyTestSimple(relbase.groovy, TestSimple):66class ImpishTestSimple(relbase.impish, TestSimple):
67 __test__ = True67 __test__ = True
6868
69 def test_output_files_exist(self):69 def test_output_files_exist(self):
@@ -126,7 +126,7 @@ class HirsuteTestSimpleStorage(relbase.hirsute, TestSimpleStorage):
126 self.output_files_exist(["netplan.yaml"])126 self.output_files_exist(["netplan.yaml"])
127127
128128
129class GroovyTestSimpleStorage(relbase.groovy, TestSimpleStorage):129class ImpishTestSimpleStorage(relbase.impish, TestSimpleStorage):
130 __test__ = True130 __test__ = True
131131
132 def test_output_files_exist(self):132 def test_output_files_exist(self):
@@ -166,7 +166,7 @@ class HirsuteTestGrubNoDefaults(relbase.hirsute, TestGrubNoDefaults):
166 self.output_files_exist(["netplan.yaml"])166 self.output_files_exist(["netplan.yaml"])
167167
168168
169class GroovyTestGrubNoDefaults(relbase.groovy, TestGrubNoDefaults):169class ImpishTestGrubNoDefaults(relbase.impish, TestGrubNoDefaults):
170 __test__ = True170 __test__ = True
171171
172 def test_output_files_exist(self):172 def test_output_files_exist(self):
diff --git a/tests/vmtests/test_uefi_basic.py b/tests/vmtests/test_uefi_basic.py
index 0ed4fab..aa4c650 100644
--- a/tests/vmtests/test_uefi_basic.py
+++ b/tests/vmtests/test_uefi_basic.py
@@ -118,7 +118,7 @@ class HirsuteUefiTestBasic(relbase.hirsute, TestBasicAbs):
118 __test__ = True118 __test__ = True
119119
120120
121class GroovyUefiTestBasic(relbase.groovy, TestBasicAbs):121class ImpishUefiTestBasic(relbase.impish, TestBasicAbs):
122 __test__ = True122 __test__ = True
123123
124124
@@ -147,7 +147,7 @@ class HirsuteUefiTestBasic4k(relbase.hirsute, TestBasicAbs):
147 disk_block_size = 4096147 disk_block_size = 4096
148148
149149
150class GroovyUefiTestBasic4k(relbase.groovy, TestBasicAbs):150class ImpishUefiTestBasic4k(relbase.impish, TestBasicAbs):
151 __test__ = True151 __test__ = True
152 disk_block_size = 4096152 disk_block_size = 4096
153153
diff --git a/tests/vmtests/test_zfsroot.py b/tests/vmtests/test_zfsroot.py
index 21e33b6..0e310c6 100644
--- a/tests/vmtests/test_zfsroot.py
+++ b/tests/vmtests/test_zfsroot.py
@@ -106,7 +106,7 @@ class HirsuteTestZfsRoot(relbase.hirsute, TestZfsRootAbs):
106 mem = 4096106 mem = 4096
107107
108108
109class GroovyTestZfsRoot(relbase.groovy, TestZfsRootAbs):109class ImpishTestZfsRoot(relbase.impish, TestZfsRootAbs):
110 __test__ = True110 __test__ = True
111 mem = 4096111 mem = 4096
112112
@@ -140,7 +140,9 @@ class HirsuteTestZfsRootFsType(relbase.hirsute, TestZfsRootFsTypeAbs):
140 mem = 4096140 mem = 4096
141141
142142
143class GroovyTestZfsRootFsType(relbase.groovy, TestZfsRootFsTypeAbs):143class ImpishTestZfsRootFsType(relbase.impish, TestZfsRootFsTypeAbs):
144 __test__ = True144 __test__ = True
145 mem = 4096
146
145147
146# vi: ts=4 expandtab syntax=python148# vi: ts=4 expandtab syntax=python

Subscribers

People subscribed via source and target branches