VirtualBox

Changeset 63143 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 8, 2016 9:16:03 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
109761
Message:

ValidationKit/storage/storagecfg.py: The separator in the output to zpool/zfs list is a tab

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py

    r63031 r63143  
    107107                if sPool.startswith(sPoolIdStart):
    108108                    # Extract the whole name and add it to the list.
    109                     asItems = sPool.split(' ');
     109                    asItems = sPool.split('\t');
    110110                    lstPools.append(asItems[0]);
    111111        return lstPools;
     
    124124                if sVolume.startswith(sPool + '/' + sVolumeIdStart):
    125125                    # Extract the whole name and add it to the list.
    126                     asItems = sVolume.split(' ');
     126                    asItems = sVolume.split('\t');
    127127                    lstVolumes.append(asItems[0]);
    128128        return lstVolumes;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette