Changeset 97488 in vbox for trunk/src/VBox/ValidationKit/tests/unittests
- Timestamp:
- Nov 9, 2022 9:00:05 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/unittests/tdUnitTest1.py
r97487 r97488 626 626 self._figureVersion(); 627 627 self._makeEnvironmentChanges(); 628 629 # If this is an ASAN build and we're on linux, make sure we've got 630 # libasan.so.N in the LD_LIBRARY_PATH or stuff w/o a RPATH entry 631 # pointing to /opt/VirtualBox will fail (like tstAsmStructs). 632 if self.getBuildType() == 'asan' and utils.getHostOs() in ('linux',): 633 sLdLibraryPath = ''; 634 if 'LD_LIBRARY_PATH' in os.environ: 635 sLdLibraryPath = os.environ['LD_LIBRARY_PATH'] + ':'; 636 sLdLibraryPath += self.oBuild.sInstallPath; 637 os.environ['LD_LIBRARY_PATH'] = sLdLibraryPath; 638 628 639 fRc = self._testRunUnitTests(None); 629 640
Note:
See TracChangeset
for help on using the changeset viewer.