Changeset 79087 in vbox for trunk/src/VBox/ValidationKit/tests/unittests
- Timestamp:
- Jun 11, 2019 11:58:28 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131247
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r76553 r79087 99 99 'testcase/tstX86-1': '', # Fails on win.x86. 100 100 'tscpasswd': '', # ?? 101 'tstVMREQ': '', # ?? Same as darwin.x86?101 'tstVMREQ': '', # ?? Same as darwin.x86? 102 102 }, 103 103 'win.x86': { … … 505 505 return False; 506 506 reporter.log('Exit code [sudo]: %s (%s)' % (iRc, asArgs)); 507 return iRc is0;507 return iRc == 0; 508 508 509 509 def _hardenedMkDir(self, sPath): … … 565 565 return True; 566 566 567 def _executeTestCase(self, sName, sFullPath, sTestCaseSubDir, oDevNull): # pylint: disable= R0914567 def _executeTestCase(self, sName, sFullPath, sTestCaseSubDir, oDevNull): # pylint: disable=too-many-locals 568 568 """ 569 569 Executes a test case.
Note:
See TracChangeset
for help on using the changeset viewer.