~smoser/ubuntu/xenial/curtin/pkg

« back to all changes in this revision

Viewing changes to tests/vmtests/test_mdadm_bcache.py

  • Committer: Ryan Harper
  • Date: 2016-07-12 16:29:18 UTC
  • mfrom: (1.1.38)
  • Revision ID: ryan.harper@canonical.com-20160712162918-kzxncyifl2t5f9wb
* sru current curtin
  - curtin/net: fix inet value for subnets, don't add interface attributes
    to alias (LP: #1588547)
  - improve net-meta network configuration (LP: #1592149)
  - reporting: set webhook handler level to DEBUG, no filtering (LP: #1590846)
  - tests/vmtests: add yakkety, remove vivid
  - curtin/net: use post-up for interface alias, resolve 120 second time out
    on Trusty when using interface aliases
  - vmtest: provide info on images used
  - fix multipath configuration and add multipath tests (LP: #1551937)
  - tools/launch and tools/xkvm: whitespace cleanup and bash -x
  - tools/launch: boot by root=LABEL=cloudimg-rootfs
  - Initial vmtest power8 support and TestSimple test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
    __test__ = True
131
131
 
132
132
 
133
 
class VividTestMdadmBcache(relbase.vivid, TestMdadmBcacheAbs):
134
 
    __test__ = True
135
 
 
136
 
 
137
133
class WilyTestMdadmBcache(relbase.wily, TestMdadmBcacheAbs):
138
134
    __test__ = True
139
135
 
142
138
    __test__ = True
143
139
 
144
140
 
 
141
class YakketyTestMdadmBcache(relbase.yakkety, TestMdadmBcacheAbs):
 
142
    __test__ = True
 
143
 
 
144
 
145
145
class TestMirrorbootAbs(TestMdadmAbs):
146
146
    # alternative config for more complex setup
147
147
    conf_file = "examples/tests/mirrorboot.yaml"
170
170
    __test__ = True
171
171
 
172
172
 
173
 
class VividTestMirrorboot(relbase.vivid, TestMirrorbootAbs):
174
 
    __test__ = True
175
 
 
176
 
 
177
173
class WilyTestMirrorboot(relbase.wily, TestMirrorbootAbs):
178
174
    __test__ = True
179
175
 
182
178
    __test__ = True
183
179
 
184
180
 
 
181
class YakketyTestMirrorboot(relbase.yakkety, TestMirrorbootAbs):
 
182
    __test__ = True
 
183
 
 
184
 
185
185
class TestRaid5bootAbs(TestMdadmAbs):
186
186
    # alternative config for more complex setup
187
187
    conf_file = "examples/tests/raid5boot.yaml"
211
211
    __test__ = True
212
212
 
213
213
 
214
 
class VividTestRaid5boot(relbase.vivid, TestRaid5bootAbs):
215
 
    __test__ = True
216
 
 
217
 
 
218
214
class WilyTestRaid5boot(relbase.wily, TestRaid5bootAbs):
219
215
    __test__ = True
220
216
 
223
219
    __test__ = True
224
220
 
225
221
 
 
222
class YakketyTestRaid5boot(relbase.yakkety, TestRaid5bootAbs):
 
223
    __test__ = True
 
224
 
 
225
 
226
226
class TestRaid6bootAbs(TestMdadmAbs):
227
227
    # alternative config for more complex setup
228
228
    conf_file = "examples/tests/raid6boot.yaml"
264
264
    __test__ = True
265
265
 
266
266
 
267
 
class VividTestRaid6boot(relbase.vivid, TestRaid6bootAbs):
268
 
    __test__ = True
269
 
 
270
 
 
271
267
class WilyTestRaid6boot(relbase.wily, TestRaid6bootAbs):
272
268
    __test__ = True
273
269
 
276
272
    __test__ = True
277
273
 
278
274
 
 
275
class YakketyTestRaid6boot(relbase.yakkety, TestRaid6bootAbs):
 
276
    __test__ = True
 
277
 
 
278
 
279
279
class TestRaid10bootAbs(TestMdadmAbs):
280
280
    # alternative config for more complex setup
281
281
    conf_file = "examples/tests/raid10boot.yaml"
305
305
    __test__ = True
306
306
 
307
307
 
308
 
class VividTestRaid10boot(relbase.vivid, TestRaid10bootAbs):
309
 
    __test__ = True
310
 
 
311
 
 
312
308
class WilyTestRaid10boot(relbase.wily, TestRaid10bootAbs):
313
309
    __test__ = True
314
310
 
317
313
    __test__ = True
318
314
 
319
315
 
 
316
class YakketyTestRaid10boot(relbase.yakkety, TestRaid10bootAbs):
 
317
    __test__ = True
 
318
 
 
319
 
320
320
class TestAllindataAbs(TestMdadmAbs):
321
321
    # more complex, needs more time
322
322
    # alternative config for more complex setup
403
403
    __test__ = False  # lukes=no does not disable mounting of device
404
404
 
405
405
 
406
 
class VividTestAllindata(relbase.vivid, TestAllindataAbs):
407
 
    __test__ = True
408
 
 
409
 
 
410
406
class WilyTestAllindata(relbase.wily, TestAllindataAbs):
411
407
    __test__ = True
412
408
 
413
409
 
414
410
class XenialTestAllindata(relbase.xenial, TestAllindataAbs):
415
411
    __test__ = True
 
412
 
 
413
 
 
414
class YakketyTestAllindata(relbase.yakkety, TestAllindataAbs):
 
415
    __test__ = True