diff options
| author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-12-25 16:01:09 +0000 |
|---|---|---|
| committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-12-25 16:01:09 +0000 |
| commit | 01b922d9f2e25375d7a306af37c2956129118f17 (patch) | |
| tree | 08ad2f06cb589767fa6318171d84b15d7e62a959 /compiler-rt | |
| parent | 300d29a75dcdd19fa89d0a262cbf63416f4aa7ed (diff) | |
| download | bcm5719-llvm-01b922d9f2e25375d7a306af37c2956129118f17.tar.gz bcm5719-llvm-01b922d9f2e25375d7a306af37c2956129118f17.zip | |
[sanitizer] sancov.py: print status to stderr
llvm-svn: 224840
Diffstat (limited to 'compiler-rt')
| -rwxr-xr-x | compiler-rt/lib/sanitizer_common/scripts/sancov.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/scripts/sancov.py b/compiler-rt/lib/sanitizer_common/scripts/sancov.py index 47695301528..37268cf34cb 100755 --- a/compiler-rt/lib/sanitizer_common/scripts/sancov.py +++ b/compiler-rt/lib/sanitizer_common/scripts/sancov.py @@ -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 "writing %d PCs to %s" % (len(pc_list), dst_path) + print >> sys.stderr, "writing %d PCs to %s" % (len(pc_list), dst_path) arr = array.array('I') arr.fromlist(sorted(pc_list)) with open(dst_path, 'ab') as f2: |

