Bug 750717 - Output linker max virtual size using 'TinderboxPrint' so it appears in the TBPL summary; r=ted CLOSED TREE

This commit is contained in:
Ed Morley 2012-05-01 17:09:44 +01:00
parent 6e994932ac
commit 027db3afd8

View File

@ -50,7 +50,7 @@ def measure_vsize_threadfunc(proc, output_file):
while proc.returncode is None:
maxvsize, vsize = procmem.get_vmsize(proc._handle)
time.sleep(0.5)
print "linker max virtual size: %d" % maxvsize
print "TinderboxPrint: linker max vsize: %d" % maxvsize
with open(output_file, "w") as f:
f.write("%d\n" % maxvsize)