[compiler-rt] r224841 - [sanitizer] Tweak sancov.py output.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Thu Dec 25 08:03:25 PST 2014


Author: eugenis
Date: Thu Dec 25 10:03:24 2014
New Revision: 224841

URL: http://llvm.org/viewvc/llvm-project?rev=224841&view=rev
Log:
[sanitizer] Tweak sancov.py output.

Modified:
    compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py

Modified: compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py?rev=224841&r1=224840&r2=224841&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py (original)
+++ compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py Thu Dec 25 10:03:24 2014
@@ -118,7 +118,7 @@ def UnpackOneRawFile(path, map_path):
       if len(pc_list) == 0: continue
       assert path.endswith('.sancov.raw')
       dst_path = module_path + '.' + os.path.basename(path)[:-4]
-      print >> sys.stderr, "writing %d PCs to %s" % (len(pc_list), dst_path)
+      print >> sys.stderr, "%s: writing %d PCs to %s" % (prog_name, len(pc_list), dst_path)
       arr = array.array('I')
       arr.fromlist(sorted(pc_list))
       with open(dst_path, 'ab') as f2:





More information about the llvm-commits mailing list