Changeset 68141 in vbox
- Timestamp:
- Jul 27, 2017 4:13:40 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r68111 r68141 491 491 ktReason_Unknown_File_Not_Found = ( 'Unknown', 'File not found' ); 492 492 ktReason_Unknown_VM_Crash = ( 'Unknown', 'VM crash' ); 493 ktReason_Unknown_HalReturnToFirmware = ( 'Unknown', 'HalReturnToFirmware' ); 493 494 ktReason_VMM_kvm_lock_spinning = ( 'VMM', 'kvm_lock_spinning' ); 494 495 ktReason_Ignore_Buggy_Test_Driver = ( 'Ignore', 'Buggy test driver' ); … … 831 832 _ = dLogs; _ = oCaseFile; 832 833 return (False, None); 834 835 def investigateInfoHalReturnToFirmware(self, oCaseFile, sInfoText, dLogs): 836 """ Investigates HalReturnToFirmware hangs """ 837 # hope that's sufficient 838 return (True, ktReason_Unknown_HalReturnToFirmware); 833 839 834 840 ## Things we search a main or VM log for to figure out why something went bust. … … 900 906 # ( Trigger text, handler method ) 901 907 ( "kvm_lock_spinning", investigateInfoKvmLockSpinning ), 908 ( "HalReturnToFirmware", investigateInfoHalReturnToFirmware ), 902 909 ]; 903 910
Note:
See TracChangeset
for help on using the changeset viewer.