Home | History | Annotate | Download | only in Scripts

Lines Matching refs:leaks

294   -l|--leaks                      Enable leaks checking
321 -m|--merge-leak-depth arg Merges leak callStacks and prints the number of unique leaks beneath a callstack depth of arg. Defaults to 5.
342 'leaks|l' => \$shouldCheckLeaks,
1119 # FIXME: Do we really want to check the image-comparison tool for leaks every time?
1121 $totalLeaks += countAndPrintLeaks("ImageDiff", $imageDiffToolPID, "$testResultsDirectory/ImageDiff-leaks.txt");
1128 print "\nWARNING: $totalLeaks total leaks found!\n";
1129 print "See above for individual leaks results.\n" if ($leaksOutputFileNumber > 2);
1221 # We are excluding the following reported leaks so they don't get in our way when looking for WebKit leaks:
1222 # This allows us ignore known leaks and only be alerted when new leaks occur. Some leaks are in the old
1223 # versions of the system frameworks that are being used by the leaks bots. Even though a leak has been
1230 "Flash_EnforceLocalSecurity" # leaks in Flash plug-in code, rdar://problem/4449747
1239 "GetLineDirectionPreference", "InitUnicodeUtilities", # leaks tool falsely reporting leak in CFNotificationCenterAddObserver, rdar://problem/4964790
1240 "ICCFPrefWrapper::GetPrefDictionary", # leaks in Internet Config. code, rdar://problem/4449794
1244 "WebCore::Selection::toRange", # bug in 'leaks', rdar://problem/4967949
1245 "WebCore::SubresourceLoader::create", # bug in 'leaks', rdar://problem/4985806
1254 "THRD", # bug in 'leaks', rdar://problem/3387783
1284 my $leaksTool = sourceDir() . "/Tools/Scripts/run-leaks";
1288 print " ? checking for leaks in $dumpToolName\n";
1290 my ($count, $bytes) = $leaksOutput =~ /Process $dumpToolPID: (\d+) leaks? for (\d+) total/;
1291 my ($excluded) = $leaksOutput =~ /(\d+) leaks? excluded/;
1297 print " - no leaks found\n";
1306 print " + $adjustedCount leaks ($bytes bytes including $excluded excluded leaks) were found, details in $leaksFilePath\n";
1308 print " + $count leaks ($bytes bytes) were found, details in $leaksFilePath\n";
1561 # check for WebCore counter leaks.
1736 $fileName = File::Spec->catfile($testResultsDirectory, "$base-leaks.txt");
1738 $fileName = File::Spec->catfile($testResultsDirectory, fileNameWithNumber($dumpToolName, $leaksOutputFileNumber) . "-leaks.txt");
2258 print "\nWARNING: $totalLeaks total leaks found for a total of $totalBytes!\n";
2259 print "WARNING: $uniqueLeakCount unique leaks found!\n";
2260 print "See above for individual leaks results.\n" if ($leaksOutputFileNumber > 2);