Skip to content

Commit

Permalink
[utils] Use print_function in the code coverage prep script, NFC.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285248 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
vedantk committed Oct 26, 2016
1 parent a8dbdb7 commit 1182ed1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions utils/prepare-code-coverage-artifact.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env python

from __future__ import print_function

'''Prepare a code coverage artifact.
- Collate raw profiles into one indexed profile.
Expand All @@ -13,7 +15,7 @@
import sys

def merge_raw_profiles(host_llvm_profdata, profile_data_dir, preserve_profiles):
print ':: Merging raw profiles...',
print(':: Merging raw profiles...', end='')
sys.stdout.flush()
raw_profiles = glob.glob(os.path.join(profile_data_dir, '*.profraw'))
manifest_path = os.path.join(profile_data_dir, 'profiles.manifest')
Expand All @@ -26,12 +28,12 @@ def merge_raw_profiles(host_llvm_profdata, profile_data_dir, preserve_profiles):
for raw_profile in raw_profiles:
os.remove(raw_profile)
os.remove(manifest_path)
print 'Done!'
print('Done!')
return profdata_path

def prepare_html_report(host_llvm_cov, profile, report_dir, binary,
restricted_dirs):
print ':: Preparing html report for {0}...'.format(binary),
print(':: Preparing html report for {0}...'.format(binary), end='')
sys.stdout.flush()
binary_report_dir = os.path.join(report_dir, os.path.basename(binary))
invocation = [host_llvm_cov, 'show', binary, '-format', 'html',
Expand All @@ -42,7 +44,7 @@ def prepare_html_report(host_llvm_cov, profile, report_dir, binary,
with open(os.path.join(binary_report_dir, 'summary.txt'), 'wb') as Summary:
subprocess.check_call([host_llvm_cov, 'report', binary,
'-instr-profile', profile], stdout=Summary)
print 'Done!'
print('Done!')

def prepare_html_reports(host_llvm_cov, profdata_path, report_dir, binaries,
restricted_dirs):
Expand Down Expand Up @@ -73,7 +75,7 @@ def prepare_html_reports(host_llvm_cov, profdata_path, report_dir, binaries,
args = parser.parse_args()

if args.use_existing_profdata and args.only_merge:
print '--use-existing-profdata and --only-merge are incompatible'
print('--use-existing-profdata and --only-merge are incompatible')
exit(1)

if args.use_existing_profdata:
Expand Down

0 comments on commit 1182ed1

Please sign in to comment.