Changeset 99691 in vbox
- Timestamp:
- May 9, 2023 9:05:00 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157239
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DisplayServerType.cpp
r99689 r99691 74 74 * @param cLibs Number of library names in \a apszLibs. 75 75 * @param phLdrMod Where to return the library handle on success. 76 * 77 * @note Will print loading statuses to verbose release log. 76 78 */ 77 79 static int vbghDisplayServerTryLoadLib(const char **apszLibs, size_t cLibs, PRTLDRMOD phLdrMod) … … 79 81 for (size_t i = 0; i < cLibs; i++) 80 82 { 81 int rc2 = RTLdrLoadSystem(apszLibs[i], /* fNoUnload = */ true, phLdrMod); 83 const char *pszLib = apszLibs[i]; 84 int rc2 = RTLdrLoadSystem(pszLib, /* fNoUnload = */ true, phLdrMod); 82 85 if (RT_SUCCESS(rc2)) 86 { 87 LogRel2(("Loaded display server system library '%s'\n", pszLib)); 83 88 return VINF_SUCCESS; 89 } 90 else 91 LogRel2(("Unable to load display server system library '%s': %Rrc\n", pszLib, rc2)); 84 92 } 85 93 -
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r99672 r99691 589 589 # This might fail on pure server guest OSes (no X, no Wayland). 590 590 if self.fpApiVer >= 7.1 and self.uRevision >= 157189: 591 sVBoxClient = oTestVm.pathJoin(self.getGuestSystemDir(oTestVm, ' usr'), 'VBoxClient');591 sVBoxClient = oTestVm.pathJoin(self.getGuestSystemDir(oTestVm, '/usr'), 'VBoxClient'); 592 592 fRc = fRc and self.txsRunTest(oTxsSession, 'Check display server detection', 5 * 60 * 1000, 593 sVBoxClient, (sVBoxClient, '- -session-detect'));593 sVBoxClient, (sVBoxClient, '-v', '-v', '--session-detect')); 594 594 595 595 return (fRc, oTxsSession);
Note:
See TracChangeset
for help on using the changeset viewer.