VirtualBox

Changeset 61357 in vbox


Ignore:
Timestamp:
Jun 1, 2016 7:45:54 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
107653
Message:

ValidationKit: Fix uploading certain logs, the aternative name is not used for logs passed as a string

File:
1 edited

Legend:

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

    r61323 r61357  
    836836        return fRc;
    837837
    838     def addLogString(self, sLog, sLogName, sAltName, sDescription, sKind, sCaller, sTsPrf):
     838    def addLogString(self, sLog, sLogName, sDescription, sKind, sCaller, sTsPrf):
    839839        fRc = True;
    840840        if sKind in [ 'text', 'log', ]  or  sKind.startswith('log/'):
     
    843843            self.xmlFlush();
    844844            g_oLock.release();
    845             self._doUploadString(sLog, sAltName, sDescription, sKind, 'text/plain');
     845            self._doUploadString(sLog, sLogName, sDescription, sKind, 'text/plain');
    846846            g_oLock.acquire();
    847847        else:
     
    13321332
    13331333    g_oLock.acquire();
    1334     fRc = g_oReporter.addLogString(sLog, sLogName, None, sDescription, sKind, sCaller, sTsPrf);
     1334    fRc = g_oReporter.addLogString(sLog, sLogName, sDescription, sKind, sCaller, sTsPrf);
    13351335    g_oLock.release();
    13361336    return fRc;
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