Changeset 65309 in vbox
- Timestamp:
- Jan 16, 2017 9:43:20 AM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/testdriver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r65230 r65309 1640 1640 reporter.log('*** extract action completed (fRc=%s) ***' % (fRc)); 1641 1641 elif 'abort' in asActions: 1642 reporter.appendToProcessName('/abort'); # Make it easier to spot in the log. 1642 1643 reporter.log('*** abort action ***'); 1643 1644 asActions.remove('abort'); -
trunk/src/VBox/ValidationKit/testdriver/reporter.py
r62484 r65309 102 102 """Increases the debug level.""" 103 103 self.iDebug += 1; 104 105 def appendToProcessName(self, sAppend): 106 """ 107 Appends sAppend to the base process name. 108 Returns the new process name. 109 """ 110 self.sName = os.path.splitext(os.path.basename(sys.argv[0]))[0] + sAppend; 111 return self.sName; 112 104 113 105 114 # … … 1368 1377 return g_oReporter.incDebug() 1369 1378 1379 def appendToProcessName(sAppend): 1380 """ 1381 Appends sAppend to the base process name. 1382 Returns the new process name. 1383 """ 1384 return g_oReporter.appendToProcessName(sAppend); 1385 1370 1386 def getErrorCount(): 1371 1387 """
Note:
See TracChangeset
for help on using the changeset viewer.