From 44e47092b7b89821730d0fd684de9b948fb32dc9 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Thu, 25 Dec 2014 16:01:09 +0000 Subject: [sanitizer] sancov.py: print status to stderr git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@224840 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/sanitizer_common/scripts/sancov.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sanitizer_common/scripts') diff --git a/lib/sanitizer_common/scripts/sancov.py b/lib/sanitizer_common/scripts/sancov.py index 476953015..37268cf34 100755 --- a/lib/sanitizer_common/scripts/sancov.py +++ b/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: -- cgit v1.2.3