diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-02-17 11:21:12 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-02-17 05:56:04 +0100 |
commit | 5425227b55820b3d6999870f8ffa690411611961 (patch) | |
tree | ca50d53816121fd41bf7fd14dd8d87e884539606 /wintest/wintest.py | |
parent | 78c4b2170eaa29f38d9b2904c8a6e71edfeb831b (diff) | |
download | samba-5425227b55820b3d6999870f8ffa690411611961.tar.gz samba-5425227b55820b3d6999870f8ffa690411611961.tar.xz samba-5425227b55820b3d6999870f8ffa690411611961.zip |
wintest upper case the --vms paramter arguments to wintest.py
This makes it easier to specify
Diffstat (limited to 'wintest/wintest.py')
-rw-r--r-- | wintest/wintest.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py index 2939b0f2ee..189d251ada 100644 --- a/wintest/wintest.py +++ b/wintest/wintest.py @@ -90,7 +90,10 @@ class wintest(): def set_vms(self, vms): '''set a list of VMs to test''' if vms is not None: - self.vms = vms.split(',') + self.vms = [] + for vm in vms.split(','): + vm = vm.upper() + self.vms.append(vm) def skip(self, step): '''return True if we should skip a step''' |