- Timestamp:
- May 31, 2017 8:18:53 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r66820 r67152 373 373 aidFailureReasons = [ 374 374 self.getFailureReason(self.ktReason_Host_DriverNotUnloading).idFailureReason, 375 self.getFailureReason(self.ktReason_Host_DriverNotCompilable).idFailureReason, 375 376 ]; 376 377 … … 466 467 ktReason_Host_DriverNotLoaded = ( 'Host', 'Driver not loaded' ); 467 468 ktReason_Host_DriverNotUnloading = ( 'Host', 'Driver not unloading' ); 469 ktReason_Host_DriverNotCompilable = ( 'Host', 'Driver not compilable' ); 468 470 ktReason_Host_NotSignedWithBuildCert = ( 'Host', 'Not signed with build cert' ); 469 471 ktReason_Host_LeftoverService = ( 'Host', 'Leftover service' ); … … 663 665 ( True, ktReason_Host_DriverNotUnloading, 664 666 'Can\'t remove kext org.virtualbox.kext.VBoxDrv; services failed to terminate - 0xe00002c7' ), 667 ], 668 'linux': [ 669 # ( Whether to stop on hit, reason tuple, needle text. ) 670 ( True, ktReason_Host_DriverNotCompilable, 671 'This system is not currently set up to build kernel modules' ), 672 ( True, ktReason_Host_DriverNotCompilable, 673 'This system is currently not set up to build kernel modules' ), 665 674 ], 666 675 };
Note:
See TracChangeset
for help on using the changeset viewer.