Comment change only, suggestion for leak-testing a set of source code changes.

git-svn-id: svn://10.0.0.236/trunk@84359 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com 2001-01-04 02:59:30 +00:00
parent 1f914c316e
commit 79f2be6662

View File

@ -1,5 +1,19 @@
#!/usr/bin/perl -w
#
# Munges the output from
# XPCOM_MEM_BLOAT_LOG=1; mozilla-bin -f bloaturls.txt
# so that it does some summary and stats stuff.
#
# To show leak test results for a set of changes, do something like this:
#
# XPCOM_MEM_BLOAT_LOG=1
# mozilla -f bloaturls.txt > a.out
# **make change**
# mozilla -f bloaturls.txt > b.out
# bloatdiff.pl a.out b.out
#
$OLDFILE = $ARGV[0];
$NEWFILE = $ARGV[1];