Changeset 97949 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Jan 3, 2023 1:19:53 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r97673 r97949 9 9 __copyright__ = \ 10 10 """ 11 Copyright (C) 2010-202 2Oracle and/or its affiliates.11 Copyright (C) 2010-2023 Oracle and/or its affiliates. 12 12 13 13 This file is part of VirtualBox base platform packages, as … … 435 435 # We need a VBox install (/ build) to test. 436 436 # 437 if False is True: ## @todo r=andy WTF?437 if False is True: ## @todo r=andy ?? 438 438 if not self.importVBoxApi(): 439 439 reporter.error('Unabled to import the VBox Python API.'); … … 496 496 if os.path.exists(os.path.join(sCandidat, 'testcase', 'tstVMStructSize' + self.sExeSuff)): 497 497 self.sUnitTestsPathSrc = sCandidat; 498 break ;498 break 499 499 500 500 if not self.sUnitTestsPathSrc: 501 501 reporter.error('Unable to find unit test source dir. Candidates: %s' % (asCandidates,)); 502 return False; 502 return False 503 else: 504 reporter.log('Unit test source dir path: ', self.sUnitTestsPathSrc) 503 505 else: 504 506 reporter.log2('Unit test source dir already set to "%s"' % (self.sUnitTestsPathSrc));
Note:
See TracChangeset
for help on using the changeset viewer.