~paolo-de-rosa/curtin/curtin

« back to all changes in this revision

Viewing changes to tests/vmtests/test_uefi_basic.py

  • Committer: Ryan Harper
  • Date: 2016-04-04 15:48:10 UTC
  • mfrom: (366.1.1 merge-a-few)
  • Revision ID: ryan.harper@canonical.com-20160404154810-qm68p671rfd0uf6q
add s390x support to curtin and vmtest
  
- use virtio ccw bus by default
- bump install_timeout to 30 minutes
  (kvm on zvm can be slow, installing things across the atlantic)
- query "default" architecture from python
- add zipl support
- use a bootloader agnostic "successful" installation watermark
- vmtests: Add arch_skip field to allow vmtests to be skipped on specific
  arches For example, bcache is currently broken on s390x, and uefi will
  never work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
class TestBasicAbs(VMBaseClass):
10
10
    interactive = False
 
11
    arch_skip = ["s390x"]
11
12
    conf_file = "examples/tests/uefi_basic.yaml"
12
 
    install_timeout = 600
13
 
    boot_timeout = 120
14
13
    extra_disks = []
15
14
    uefi = True
16
15
    disk_to_check = [('main_disk', 1), ('main_disk', 2)]