Runs a meson command logging output to process-iwyu.log
(args)
| 25 | |
| 26 | |
| 27 | def run_meson(args): |
| 28 | "Runs a meson command logging output to process-iwyu.log" |
| 29 | with open('process-iwyu.log', 'a') as sys.stdout: |
| 30 | ret = mesonmain.run(args, abspath('meson')) |
| 31 | sys.stdout = sys.__stdout__ |
| 32 | return ret |
| 33 | |
| 34 | |
| 35 | def remove_includes(filepath, include, build_dir): |
no test coverage detected