Changeset 65374 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Jan 19, 2017 1:55:06 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112968
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/btresolver.py
r65371 r65374 187 187 try: 188 188 # 189 # Walk the build rootdirectory and look for .dSYM directories, building a189 # Walk the scratch path directory and look for .dSYM directories, building a 190 190 # list of them. 191 191 # 192 192 asDSymPaths = []; 193 193 194 for sDirPath, asDirs, _ in os.walk(self.s BuildRoot):194 for sDirPath, asDirs, _ in os.walk(self.sScratchPath): 195 195 for sDir in asDirs: 196 196 if sDir.endswith('.dSYM'): … … 498 498 self.sScratchDbgPath = os.path.join(self.sScratchPath, 'dbgsymbols'); 499 499 500 if self.fnLog is None: 501 self.fnLog = self.logStub; 502 500 503 if self.sRTLdrFltPath is None: 501 504 self.sRTLdrFltPath = getRTLdrFltPath([self.sScratchPath, self.sBuildRoot]); 502 503 if self.fnLog is None: 504 self.fnLog = self.logStub; 505 if self.sRTLdrFltPath is not None: 506 self.log('Found RTLdrFlt in %s' % (self.sRTLdrFltPath,)); 507 else: 508 self.log('Couldn\'t find RTLdrFlt in either %s or %s' % (self.sScratchPath, self.sBuildRoot)); 505 509 506 510 def log(self, sText):
Note:
See TracChangeset
for help on using the changeset viewer.