VirtualBox

Changeset 65341 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jan 16, 2017 6:42:08 PM (8 years ago)
Author:
vboxsync
Message:

ValidationKit: Fix for r112914, add the new kind prefix into the list of known ones so the logs get actually uploaded

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/reporter.py

    r65309 r65341  
    837837    def addLogFile(self, oSrcFile, sSrcFilename, sAltName, sDescription, sKind, sCaller, sTsPrf):
    838838        fRc = True;
    839         if sKind in [ 'text', 'log', ]  or  sKind.startswith('log/')  or  sKind.startswith('info/'):
     839        if    sKind in [ 'text', 'log', 'process'] \
     840           or sKind.startswith('log/') \
     841           or sKind.startswith('info/') \
     842           or sKind.startswith('process/'):
    840843            self.log(0, '*** Uploading "%s" - KIND: "%s" - DESC: "%s" ***'
    841844                        % (sSrcFilename, sKind, sDescription),  sCaller, sTsPrf);
     
    858861    def addLogString(self, sLog, sLogName, sDescription, sKind, sCaller, sTsPrf):
    859862        fRc = True;
    860         if sKind in [ 'text', 'log', ]  or  sKind.startswith('log/')  or  sKind.startswith('info/'):
     863        if    sKind in [ 'text', 'log', 'process'] \
     864           or sKind.startswith('log/') \
     865           or sKind.startswith('info/') \
     866           or sKind.startswith('process/'):
    861867            self.log(0, '*** Uploading "%s" - KIND: "%s" - DESC: "%s" ***'
    862868                        % (sLogName, sKind, sDescription),  sCaller, sTsPrf);
Note: See TracChangeset for help on using the changeset viewer.

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