Changeset 103518 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Feb 22, 2024 8:27:01 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161861
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r103499 r103518 459 459 460 460 # Adjust fRc if caller expected a specific exit code. 461 if iExpectedRc \462 and iRc is not iExpectedRc:461 if iExpectedRc is not None \ 462 and (iRc != iExpectedRc): 463 463 reporter.error('Executing \"%s\" on host failed (got exit code %d, expected %d' 464 464 % (sWhat, iRc, iExpectedRc,)); 465 465 fRc = False; 466 466 467 reporter.log2('Got fRc = %s + exit code %d' % (fRc, iRc,)); 467 468 return fRc, iRc; 468 469 … … 681 682 # Let VKAT on the host run synchronously. 682 683 # 683 fRc, _ = self.executeHst("VKAT Host", asArgs );684 fRc, _ = self.executeHst("VKAT Host", asArgs, iExpectedRc = 0); 684 685 685 686 reporter.testDone();
Note:
See TracChangeset
for help on using the changeset viewer.