1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

wintest Make the new --vms option default to running all tests.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2010-11-30 12:37:01 +11:00 committed by Andrew Tridgell
parent 86c3c42745
commit 0b2ec0abb9
2 changed files with 3 additions and 2 deletions

View File

@ -816,7 +816,7 @@ if __name__ == '__main__':
parser = optparse.OptionParser("test-howto.py")
parser.add_option("--conf", type='string', default='', help='config file')
parser.add_option("--skip", type='string', default='', help='list of steps to skip (comma separated)')
parser.add_option("--vms", type='string', default='', help='list of VMs to use (comma separated)')
parser.add_option("--vms", type='string', default=None, help='list of VMs to use (comma separated)')
parser.add_option("--list", action='store_true', default=False, help='list the available steps')
parser.add_option("--rebase", action='store_true', default=False, help='do a git pull --rebase')
parser.add_option("--clean", action='store_true', default=False, help='clean the tree')

View File

@ -68,7 +68,8 @@ class wintest():
def set_vms(self, vms):
'''set a list of VMs to test'''
self.vms = vms.split(',')
if vms is not None:
self.vms = vms.split(',')
def skip(self, step):
'''return True if we should skip a step'''