- Timestamp:
- Jul 5, 2016 12:01:15 PM (9 years ago)
- Location:
- trunk/src/VBox/ValidationKit/testboxscript
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/darwin/setup-routines.sh
r56295 r62024 208 208 Additional things to do:" 209 209 1. Change the 'Energy Saver' options to never turn off the computer: 210 $ systemsetup -set sleep Never210 $ systemsetup -setcomputersleep Never -setdisplaysleep 5 -setharddisksleep 15 211 211 2. Check 'Restart automatically if the computer freezes' if available in 212 212 the 'Energy Saver' settings. -
trunk/src/VBox/ValidationKit/testboxscript/testboxtasks.py
r61838 r62024 592 592 593 593 # 594 # Wipe the stuff clean. 594 # Wipe the stuff clean. On failure, delay for a total of 20 seconds while 595 # periodically retrying the cleanup. This is a hack to work around issues 596 # on windows caused by the service in aelupsvc.dll preventing us from deleting 597 # vts_rm.exe (or rather the directory its in). The service is called 598 # "Application Experience", which feels like a weird joke here. 595 599 # 596 600 fRc2 = self._oTestBoxScript.reinitScratch(fnLog = self._log); 601 cRetries = 4; 602 while fRc2 is False and cRetries > 0: 603 time.sleep(5); 604 fRc2 = self._oTestBoxScript.reinitScratch(fnLog = self._log); 605 cRetries -= 1; 597 606 598 607 return fRc and fRc2;
Note:
See TracChangeset
for help on using the changeset viewer.