(project)
| 52 | return li |
| 53 | |
| 54 | def CscopeDatabase(project): |
| 55 | files = set(_get_src(project) + _get_header(project)) |
| 56 | with open('cscope.files', 'w') as db: |
| 57 | db.write('-k\n-q\n') |
| 58 | db.write('\n'.join(files)) |
| 59 | db.flush() # let cscope see the full content |
| 60 | os.system('cscope -b') |
| 61 |
no test coverage detected