diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-11-30 12:37:01 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-12-01 16:09:58 +1100 |
commit | 0b2ec0abb98d6ce1198a2addb802afae2711eaad (patch) | |
tree | e12b9892864efbbabc654c21c6dfe89f72f46e00 /wintest/wintest.py | |
parent | 86c3c427456431d49529a358e3f754b1fa812b6e (diff) | |
download | samba-0b2ec0abb98d6ce1198a2addb802afae2711eaad.tar.gz samba-0b2ec0abb98d6ce1198a2addb802afae2711eaad.tar.xz samba-0b2ec0abb98d6ce1198a2addb802afae2711eaad.zip |
wintest Make the new --vms option default to running all tests.
Andrew Bartlett
Diffstat (limited to 'wintest/wintest.py')
-rw-r--r-- | wintest/wintest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py index 910297ed4b..c9bd87554e 100644 --- a/wintest/wintest.py +++ b/wintest/wintest.py @@ -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''' |