Alexander Afanasyev | 20c85cb | 2018-03-09 17:50:14 -0500 | [diff] [blame] | 1 | from waflib import TaskGen |
Eric Newberry | 716ab60 | 2016-12-29 21:49:57 -0700 | [diff] [blame] | 2 | |
| 3 | def options(opt): |
Alexander Afanasyev | 20c85cb | 2018-03-09 17:50:14 -0500 | [diff] [blame] | 4 | opt.add_option('--with-coverage', action='store_true', default=False, |
| 5 | help='Add compiler flags to enable code coverage information') |
Eric Newberry | 716ab60 | 2016-12-29 21:49:57 -0700 | [diff] [blame] | 6 | |
| 7 | def configure(conf): |
| 8 | if conf.options.with_coverage: |
| 9 | if not conf.options.debug: |
Alexander Afanasyev | 20c85cb | 2018-03-09 17:50:14 -0500 | [diff] [blame] | 10 | conf.fatal('Code coverage flags require debug mode compilation (add --debug)') |
Eric Newberry | 716ab60 | 2016-12-29 21:49:57 -0700 | [diff] [blame] | 11 | conf.check_cxx(cxxflags=['-fprofile-arcs', '-ftest-coverage', '-fPIC'], |
| 12 | linkflags=['-fprofile-arcs'], uselib_store='GCOV', mandatory=True) |
| 13 | |
| 14 | @TaskGen.feature('cxx','cc') |
| 15 | @TaskGen.after('process_source') |
| 16 | def add_coverage(self): |
| 17 | if getattr(self, 'use', ''): |
| 18 | self.use += ' GCOV' |
| 19 | else: |
| 20 | self.use = 'GCOV' |