2018-12-21 22:02:11 +03:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2019-05-24 04:53:59 +03:00
|
|
|
import glob
|
2018-12-21 22:02:11 +03:00
|
|
|
import subprocess
|
2019-05-24 04:53:59 +03:00
|
|
|
import sys
|
2018-12-21 22:02:11 +03:00
|
|
|
import buildconfig
|
|
|
|
|
|
|
|
|
2019-05-24 04:53:59 +03:00
|
|
|
def main(_, profile_dir):
|
|
|
|
profraw_files = glob.glob(profile_dir + '/*.profraw')
|
|
|
|
if not profraw_files:
|
|
|
|
print('Could not find any profraw files in ' + profile_dir)
|
|
|
|
sys.exit(1)
|
|
|
|
|
2018-12-21 22:02:11 +03:00
|
|
|
subprocess.check_call([buildconfig.substs['LLVM_PROFDATA'], 'merge',
|
2019-05-24 04:53:59 +03:00
|
|
|
'-o', 'merged.profdata'] + profraw_files)
|