- Timestamp:
- Feb 13, 2024 2:04:41 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 161642
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/remoteexecutor.py
r98103 r103335 199 199 if sBinary is not None: 200 200 fRc, sOutput, sError = self._execLocallyOrThroughTxs(sBinary, asArgs, sInput, cMsTimeout); 201 # If verbose logging is enabled and the process failed for whatever reason, log its output to the reporter. 202 if not fRc \ 203 and reporter.getVerbosity() >= 2: # Verbose logging starts at level 2. 204 asOutput = sOutput.splitlines(); 205 for sLine in asOutput: 206 reporter.log('%s: %s' % (sExec, sLine.encode(encoding = 'UTF-8', errors = 'strict'),)); 201 207 else: 202 208 fRc = False;
Note:
See TracChangeset
for help on using the changeset viewer.