Changeset 79593 in vbox for trunk/src/VBox/ValidationKit/tests/storage
- Timestamp:
- Jul 8, 2019 12:41:20 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131891
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/storagecfg.py
r79591 r79593 32 32 import os; 33 33 import re; 34 35 # Validation Kit imports.36 from common import utils;37 34 38 35 … … 655 652 if not self.oDiskCfg.isCfgStaticDir(): 656 653 return self.oStorOs.cleanupPoolsAndVolumes(self.oExec, 'pool', 'vol'); 657 else: 658 659 660 661 662 654 655 fRc = True; 656 for sEntry in os.listdir(self.oDiskCfg.getDisks()): 657 fRc = fRc and self.oExec.rmTree(os.path.join(self.oDiskCfg.getDisks(), sEntry)); 658 659 return fRc;
Note:
See TracChangeset
for help on using the changeset viewer.