~wesley-wiedenmeier/curtin/reporting-cleanup-rebase

« back to all changes in this revision

Viewing changes to tests/vmtests/releases.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:
 
1
from curtin.util import get_platform_arch
 
2
 
 
3
 
1
4
class _ReleaseBase(object):
2
5
    repo = "maas-daily"
3
 
    arch = "amd64"
 
6
    arch = get_platform_arch()
4
7
 
5
8
 
6
9
class _PreciseBase(_ReleaseBase):