(self)
| 73 | ) |
| 74 | |
| 75 | def have_f_sources(self): |
| 76 | for (lib_name, build_info) in self.libraries: |
| 77 | if has_f_sources(build_info.get('sources', [])): |
| 78 | return True |
| 79 | return False |
| 80 | |
| 81 | def have_cxx_sources(self): |
| 82 | for (lib_name, build_info) in self.libraries: |
no test coverage detected