Changeset 66820 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 8, 2017 3:57:37 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/win/readme.txt
r66771 r66820 120 120 Level Authentication" is not checked or rdesktop can't access it. 121 121 122 W10: Make old rdesktop connect: 123 \HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp\SecurityLayer 124 Change DWORD Hex '2' -> '1' 125 122 126 23b. While you're in "System Properties", in the "Hardware" tab, button 123 127 "Driver Signing" tell it to ignore logo testing requirements. … … 135 139 136 140 W10: Find startup folder by hitting Win+R and entering "shell:startup". 137 W10: Make old rdesktop connect:138 \HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp\SecurityLayer139 Change DWORD Hex '2' -> '1'140 141 141 142 28. If this is an Intel box and the CPU is capable of Nested Paging, edit C:\autoexec-testbox.cmd -
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r66817 r66820 470 470 ktReason_Host_Reboot_OSX_Watchdog_Timeout = ( 'Host Reboot', 'OSX Watchdog Timeout' ); 471 471 ktReason_Host_Modprobe_Failed = ( 'Host', 'Modprobe failed' ); 472 ktReason_Host_Install_Hang = ( 'Host', 'Install hang' ); 472 473 ktReason_Networking_Nonexistent_host_nic = ( 'Networking', 'Nonexistent host networking interface' ); 473 474 ktReason_OSInstall_GRUB_hang = ( 'O/S Install', 'GRUB hang' ); … … 616 617 617 618 @staticmethod 618 def findAndReturnRes etOfLine(sHaystack, sNeedle):619 def findAndReturnRestOfLine(sHaystack, sNeedle): 619 620 """ 620 621 Looks for sNeedle in sHaystack. … … 634 635 635 636 @staticmethod 636 def findInAnyAndReturnRes etOfLine(asHaystacks, sNeedle):637 def findInAnyAndReturnRestOfLine(asHaystacks, sNeedle): 637 638 """ 638 639 Looks for sNeedle in zeroe or more haystacks (asHaystack). … … 641 642 """ 642 643 for sHaystack in asHaystacks: 643 sRet = VirtualTestSheriff.findAndReturnRes etOfLine(sHaystack, sNeedle);644 sRet = VirtualTestSheriff.findAndReturnRestOfLine(sHaystack, sNeedle); 644 645 if sRet is not None: 645 646 return sRet; … … 673 674 an uninstall first and will be seeing similar issues to the uninstall. 674 675 """ 675 _ = fInstall; 676 677 if fInstall and oFailedResult.enmStatus == TestSetData.ksTestStatus_TimedOut: 678 oCaseFile.noteReasonForId(self.ktReason_Host_Install_Hang, oFailedResult.idTestResult) 679 return True; 676 680 677 681 atSimple = self.katSimpleInstallUninstallMainLogReasons; … … 840 844 'Error: failed to start machine. Error message: Not supported. (VERR_NOT_SUPPORTED)' ), 841 845 ( False, ktReason_Unknown_VM_Crash, 'txsDoConnectViaTcp: Machine state: Aborted' ), 842 ( True, ktReason_Host_Modprobe_Failed, 846 ( True, ktReason_Host_Modprobe_Failed, 'Kernel driver not installed' ) 843 847 ]; 844 848 … … 927 931 # Look for BSODs. Some stupid stupid inconsistencies in reason and log messages here, so don't try prettify this. 928 932 # 929 sDetails = self.findInAnyAndReturnRes etOfLine([ sVMLog, sResultLog ],930 933 sDetails = self.findInAnyAndReturnRestOfLine([ sVMLog, sResultLog ], 934 'GIM: HyperV: Guest indicates a fatal condition! P0='); 931 935 if sDetails is not None: 932 936 # P0=%#RX64 P1=%#RX64 P2=%#RX64 P3=%#RX64 P4=%#RX64 " -
trunk/src/VBox/ValidationKit/testmanager/core/testresults.py
r65980 r66820 211 211 def getListOfFailures(self): 212 212 """ 213 Get a list of test results ins ances actually contributing to cErrors.214 215 Returns a list of TestResultDataEx ins ance from this tree. (shared!)213 Get a list of test results instances actually contributing to cErrors. 214 215 Returns a list of TestResultDataEx instance from this tree. (shared!) 216 216 """ 217 217 # Check each child (if any).
Note:
See TracChangeset
for help on using the changeset viewer.