def _cov_unr(self): '''Use the last regression coverage data to generate unreachable coverage exclusions. ''' # TODO, Only support VCS if self.tool not in ['vcs', 'xcelium']: log.error("Only VCS and Xcelium are supported for the UNR flow.") sys.exit(1) # Create initial set of directories, such as dispatched, passed etc. self._create_dirs() cov_unr_deploy = CovUnr(self) self.deploy = [cov_unr_deploy]
def _cov_unr(self): '''Use the last regression coverage data to generate unreachable coverage exclusions. ''' # TODO, Only support VCS if self.tool != 'vcs': log.error("Currently only support VCS for coverage UNR") sys.exit(1) # Create initial set of directories, such as dispatched, passed etc. self._create_dirs() cov_unr_deploy = CovUnr(self) self.deploy = [cov_unr_deploy]