comparison components/tp-cmdline.js @ 206:beca399c3a16

Bug 685632 - Please collect RSS (memory) data during Talos testing on Android. r=jlebar,njn
author Joel Maher <jmaher@mozilla.com>
date Wed, 09 Nov 2011 10:41:03 -0500
parents 0b38ce037298
children
comparison
equal deleted inserted replaced
205:eaef28f55f92 206:beca399c3a16
92 args.noisy = cmdLine.handleFlag("tpnoisy", false); 92 args.noisy = cmdLine.handleFlag("tpnoisy", false);
93 args.timeout = cmdLine.handleFlagWithParam("tptimeout", false); 93 args.timeout = cmdLine.handleFlagWithParam("tptimeout", false);
94 args.delay = cmdLine.handleFlagWithParam("tpdelay", false); 94 args.delay = cmdLine.handleFlagWithParam("tpdelay", false);
95 args.noForceCC = cmdLine.handleFlag("tpnoforcecc", false); 95 args.noForceCC = cmdLine.handleFlag("tpnoforcecc", false);
96 args.mozafterpaint = cmdLine.handleFlag("tpmozafterpaint", false); 96 args.mozafterpaint = cmdLine.handleFlag("tpmozafterpaint", false);
97 args.rss = cmdLine.handleFlag("rss", false);
97 } 98 }
98 catch (e) { 99 catch (e) {
99 return; 100 return;
100 } 101 }
101 102
123 " -tpoffline Force offline mode\n" + 124 " -tpoffline Force offline mode\n" +
124 " -tpnoisy Dump the name of the last loaded page to console\n" + 125 " -tpnoisy Dump the name of the last loaded page to console\n" +
125 " -tptimeout Max amount of time given for a page to load, quit if exceeded\n" + 126 " -tptimeout Max amount of time given for a page to load, quit if exceeded\n" +
126 " -tpdelay Amount of time to wait between each pageload\n" + 127 " -tpdelay Amount of time to wait between each pageload\n" +
127 " -tpnoforcecc Don't force cycle collection between each pageload\n" + 128 " -tpnoforcecc Don't force cycle collection between each pageload\n" +
128 " -tpmozafterpaint Measure Time after recieving MozAfterPaint event instead of load event\n" 129 " -tpmozafterpaint Measure Time after recieving MozAfterPaint event instead of load event\n" +
130 " -rss Dump RSS after each page is loaded\n"
129 131
130 }; 132 };
131 133
132 134
133 var PageLoaderCmdLineFactory = 135 var PageLoaderCmdLineFactory =