summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Last set of valgrind suppressions for tcmalloc.willchan@chromium.org2009-11-251-7/+27
| | | | | | | | BUG=http://crbug.com/28149 Review URL: http://codereview.chromium.org/434069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33042 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress some VDSOSupport valgrind errors.willchan@chromium.org2009-11-251-3/+26
| | | | | | | | BUG=http://crbug.com/28149 Review URL: http://codereview.chromium.org/440014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33027 0039d316-1c4b-4281-b951-d872f2087c98
* Enable TCMalloc on Linux by default.willchan@chromium.org2009-11-251-0/+26
| | | | | | | | | | This change also reworks the tcmalloc dependency to be added only to chrome and test_shell, instead of base. This is necessary since otherwise tcmalloc will be double initialized (by both the main executable and dlopen'd shared objects like the npapitestplugin.so). Add valgrind suppressions. This are invalid reads on static initialization in the VDSOSupport module. I haven't investigated it yet, but I suspect they're benign. BUG=http://crbug.com/28149, http://crbug.com/28385 Review URL: http://codereview.chromium.org/399081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33010 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress yet another report on libjingle/MessageQueuetimurrrr@chromium.org2009-11-241-0/+6
| | | | | | | | | | | | Here's the recent report http://build.chromium.org/buildbot/waterfall/builders/Linux%20Tests%20(tsan)/builds/1084/steps/valgrind%20test:%20unit/logs/stdio BUG=25913 TBR=dank TEST=unit should become green under TSAN Review URL: http://codereview.chromium.org/440010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32981 0039d316-1c4b-4281-b951-d872f2087c98
* Flip: Fix a bunch of leaks.willchan@chromium.org2009-11-242-148/+0
| | | | | | | | | | | | FlipIOBuffer::release() was broken. It called release() on scoped_refptrs which does not decrease refcount, hence it leaked IOBuffers and FlipStreams. Redo the memory management for FlipSession. Stop using raw pointers in FlipSessionPool to hold onto FlipSession. FlipSessionPool uses scoped_refptr now to track Fli pSessions. Instead of having FlipSession call Release() on itself, it now calls FlipSessionPool to remove itself from the pool when the tcp connection is closed. In FlipStreamTest, manually call FlipSessionPool::Remove() since there is no tcp connection event to trigger FlipSession to remove itself. BUG=http://crbug.com/28493 Review URL: http://codereview.chromium.org/438014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32945 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a harmless shutdown leak.estade@chromium.org2009-11-241-1/+11
| | | | | | | | | | TBR=ananta BUG=28662 Review URL: http://codereview.chromium.org/435023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32944 0039d316-1c4b-4281-b951-d872f2087c98
* Variation of signature for suppression in bug 28027.tim@chromium.org2009-11-231-0/+26
| | | | | | | | | TBR=levin BUG=28027 Review URL: http://codereview.chromium.org/434029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32888 0039d316-1c4b-4281-b951-d872f2087c98
* valgrind suppression for atexit leaktim@chromium.org2009-11-231-0/+8
| | | | | | | | | TBR=timurrrr BUG=28633 Review URL: http://codereview.chromium.org/439012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32878 0039d316-1c4b-4281-b951-d872f2087c98
* Fix valgrind run.maruel@chromium.org2009-11-234-13/+116
| | | | | | | | TEST=valgrind works BUG=none Review URL: http://codereview.chromium.org/437014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32836 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress reports under thread-safe gethostbyname2_r functiontimurrrr@chromium.org2009-11-231-0/+11
| | | | | | | | | | | Sample reports: http://build.chromium.org/buildbot/waterfall.fyi/builders/Linux%20Tests%20(tsan%20ui)/builds/208/steps/valgrind%20test%3A%20ui_6/logs/stdio TEST=TSAN UI bot should become greener BUG=https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/59449 Review URL: http://codereview.chromium.org/435005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32822 0039d316-1c4b-4281-b951-d872f2087c98
* Suppression expected leak in ProxyConfigServiceLinux.oshima@chromium.org2009-11-231-0/+11
| | | | | | | | | BUG=None TEST=OminiboxTest (and a couple of others) were reporting this in valgrind test. They should be gone with this patch. Review URL: http://codereview.chromium.org/414067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32805 0039d316-1c4b-4281-b951-d872f2087c98
* Add one more suppression for SafeBrowsing database for ThreadSanitizertimurrrr@chromium.org2009-11-231-1/+8
| | | | | | | | BUG=28559 TBR=dank Review URL: http://codereview.chromium.org/434007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32800 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress ThreadSanitizer reports in SafeBrowsingtimurrrr@chromium.org2009-11-231-0/+6
| | | | | | | | | BUG=28559 TBR=dank TEST=TSAN UI bot should become greener Review URL: http://codereview.chromium.org/437002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32799 0039d316-1c4b-4281-b951-d872f2087c98
* Missed one more mac suppression.willchan@chromium.org2009-11-231-0/+24
| | | | | | | | BUG=28943 Review URL: http://codereview.chromium.org/429008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32797 0039d316-1c4b-4281-b951-d872f2087c98
* Flip: last mac suppresion.willchan@chromium.org2009-11-221-0/+17
| | | | | | | | BUG=28493 Review URL: http://codereview.chromium.org/431006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32782 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress mac flip leaks too.willchan@chromium.org2009-11-221-0/+53
| | | | | | | | BUG=28493 Review URL: http://codereview.chromium.org/431005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32771 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress valgrind errors for flip leaks.willchan@chromium.org2009-11-221-0/+53
| | | | | | Review URL: http://codereview.chromium.org/418050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32769 0039d316-1c4b-4281-b951-d872f2087c98
* Fix wildcard use in suppression for bug 28386tim@chromium.org2009-11-211-4/+4
| | | | | | | | BUG=28386 Review URL: http://codereview.chromium.org/418037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32715 0039d316-1c4b-4281-b951-d872f2087c98
* Remove old files.nsylvain@chromium.org2009-11-2013-3016/+0
| | | | | | Review URL: http://codereview.chromium.org/425008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32711 0039d316-1c4b-4281-b951-d872f2087c98
* Relaxes tooltip supressions. It isn't important to get the exactsky@chromium.org2009-11-201-18/+0
| | | | | | | | | | | | signature I originally put in as we don't care about browser_main and that other stuff (and it changed), only the tooltip part. BUG=none TEST=none Review URL: http://codereview.chromium.org/424008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32709 0039d316-1c4b-4281-b951-d872f2087c98
* Use a wildcard for the anonymous-namespace mangling in OCSPRequestSession ↵tim@chromium.org2009-11-201-4/+4
| | | | | | | | | | | suppression. TBR=dank BUG=28386 Review URL: http://codereview.chromium.org/418033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32704 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a ThreadSanitizer report on libevent in ipc_unitteststimurrrr@chromium.org2009-11-201-0/+7
| | | | | | | | | BUG=28396 TBR=dank,stuartmorgan TEST=ipc_unittests should become green on TSAN bots Review URL: http://codereview.chromium.org/422006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32682 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress yet another data race on vfptr from base::Threadtimurrrr@chromium.org2009-11-201-2/+10
| | | | | | | | | | | | This has started firing recently, like http://build.chromium.org/buildbot/waterfall/builders/Linux%20Tests%20(tsan)/builds/1030/steps/valgrind%20test:%20unit/logs/stdio BUG=25385 TBR=dank,stuartmorgan TEST=unit_tests should become green on TSAN bots Review URL: http://codereview.chromium.org/426001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32665 0039d316-1c4b-4281-b951-d872f2087c98
* Suppression for two invalid read/writes in OCSPRequestSession.tim@chromium.org2009-11-201-0/+52
| | | | | | | | | | | | | | | | | | | I did htis instead of disabling the tests because it seems like it could affect many different tests and I'd be chasing them down all day :) +dank because: The stack trace looks weird because it includes a path on the specific machine. c++filt de-mangled that part of the symbol into "(anonymous-namespace)". I hope this doesn't mean the suppression will only work on the specific machine. TBR=ananta BUG=28386 TEST=UnloadTest, SharedWorkerTest Review URL: http://codereview.chromium.org/418023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32660 0039d316-1c4b-4281-b951-d872f2087c98
* Supresses two tooltip errors and one chrome os network tasksky@chromium.org2009-11-201-0/+72
| | | | | | | | | | | leak. As far as I can tell the first two are bugs in gtk. BUG=none TEST=none Review URL: http://codereview.chromium.org/414012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32615 0039d316-1c4b-4281-b951-d872f2087c98
* Fix unitialized memory access in workers.levin@chromium.org2009-11-201-53/+0
| | | | | | | | | | | | | | | | | | | | The primary issue was that OnDestroy didn't change the entangled port to have its entangled port be none. A secondary issues that came up is that in very rare circumstances (like a crash happening early in a worker process), it seemed like it may be possible that one of the message ports may think it is entangled and the other half may not, so the Erase method guards against this. Also, some code was added to verify the internal structure before running code and after. BUG=27839 TEST=valgrind on linux running ui tests, specifically WorkerTest.WorkerFastLayoutTests. Review URL: http://codereview.chromium.org/402106 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32586 0039d316-1c4b-4281-b951-d872f2087c98
* Add a valgrind suppression for Mac UI tests.thestig@chromium.org2009-11-191-0/+10
| | | | | | | | | BUG=28279 TEST=none TBR=stuartmorgan Review URL: http://codereview.chromium.org/402096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32557 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Remove bug_26964 valgrind suppression.shess@chromium.org2009-11-191-26/+0
| | | | | | | | | | | | | | I cannot repro locally, and the bot logs do not show the suppression ever firing. Reviewing the specific log, there was a timeout starting the Chromium subprocess for one test (which failed), I suspect that the resulting unclean shutdown may be related. BUG=26964 TEST=valgrind stays green. Review URL: http://codereview.chromium.org/415002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32542 0039d316-1c4b-4281-b951-d872f2087c98
* Adds suppression for main menu on chrome os which is currently leaked.sky@chromium.org2009-11-191-3/+15
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/399099 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32516 0039d316-1c4b-4281-b951-d872f2087c98
* Edited the NSTemporaryDirectory suppression to match all the races under ↵timurrrr@chromium.org2009-11-191-2/+2
| | | | | | | | | | | | __NSAutoreleaseObject. This patch was prepared by Alexander Potapenko (cc'ed) BUG=http://openradar.appspot.com/7396501 TBR=dank,stuartmorgan Review URL: http://codereview.chromium.org/409002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32510 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress another valgrind error.thestig@chromium.org2009-11-191-0/+11
| | | | | | | | BUG=28200 TEST=Tree goes green? Review URL: http://codereview.chromium.org/402076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32456 0039d316-1c4b-4281-b951-d872f2087c98
* No need to run out of memory test under valgrind - they will obviously leak, ↵vandebo@chromium.org2009-11-181-8/+0
| | | | | | | | | | | but we don't care. BUG=28179 TEST=none Review URL: http://codereview.chromium.org/404036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32437 0039d316-1c4b-4281-b951-d872f2087c98
* Tweak a valgrind suppression so it actually works.thestig@chromium.org2009-11-181-4/+1
| | | | | | | | | BUG=28179 TEST=valgrind bot goes green. TBR=tony Review URL: http://codereview.chromium.org/406008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32432 0039d316-1c4b-4281-b951-d872f2087c98
* Add a valgrind suppression.thestig@chromium.org2009-11-181-0/+10
| | | | | | | | BUG=28179 TEST=none Review URL: http://codereview.chromium.org/406007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32423 0039d316-1c4b-4281-b951-d872f2087c98
* Bump linux startup perf expectation.chase@chromium.org2009-11-181-1/+1
| | | | | | | | | | | | | r32264 causes the linux startup test to appear to regress. Until the reference build is updated, mark the current behavior as expected. BUG=6844 TEST=linux startup perf test goes green Review URL: http://codereview.chromium.org/403016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32360 0039d316-1c4b-4281-b951-d872f2087c98
* Remove Valgring suppressions for sync since the bug is fixed now.munjal@chromium.org2009-11-181-25/+0
| | | | | | Review URL: http://codereview.chromium.org/401019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32292 0039d316-1c4b-4281-b951-d872f2087c98
* Add three Valgrind suppressions for one leak and two invalid reads.idana@chromium.org2009-11-181-0/+70
| | | | | | | | | BUG=28071,28072,28073 TEST=none TBR=erikkay git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32242 0039d316-1c4b-4281-b951-d872f2087c98
* Added two suppressions for a leak and an invalid read in WebCore.idana@chromium.org2009-11-171-0/+52
| | | | | | | | | BUG=28026,28027 TEST=none TBR=erikkay git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32209 0039d316-1c4b-4281-b951-d872f2087c98
* Added suppressions for new Valgrind errors.idana@chromium.org2009-11-171-0/+234
| | | | | | | | | | BUG=27989,27991,27993 TEST=none TBR=erikkay Review URL: http://codereview.chromium.org/399038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32178 0039d316-1c4b-4281-b951-d872f2087c98
* Suppression for a leak in ↵idana@chromium.org2009-11-171-0/+16
| | | | | | | | | | | | history::ExpireHistoryBackend::BroadcastDeleteNotifications. BUG=27936 TEST=none TBR=erikkay@chromium.org Review URL: http://codereview.chromium.org/400008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32148 0039d316-1c4b-4281-b951-d872f2087c98
* Increase mac morejs variance.chase@chromium.org2009-11-171-1/+1
| | | | | | | | | | | | Recent false positives on mac morejs page cycler have shown up. Increase the variance to squelch them. BUG=none TEST=mac morejs perf alerts are quelled Review URL: http://codereview.chromium.org/385122 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32141 0039d316-1c4b-4281-b951-d872f2087c98
* Added a Valgrind suppression for an error in MessagePortDispatcher::Observeidana@chromium.org2009-11-171-0/+17
| | | | | | | | | | BUG=27922 TBR=erikkay@chromium.org TEST=none Review URL: http://codereview.chromium.org/402001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32140 0039d316-1c4b-4281-b951-d872f2087c98
* Added a few Valgrind suppressions related to the workers code.idana@chromium.org2009-11-161-2/+77
| | | | | | | | | | BUG=27827,27828,27829 TEST=none TBR=levin@chromium.org, atwilson@chromium.org, erikkay@chromium.org Review URL: http://codereview.chromium.org/385137 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32069 0039d316-1c4b-4281-b951-d872f2087c98
* Remove suppressions for two bug issues.timurrrr@chromium.org2009-11-151-23/+0
| | | | | | | | | These suppressions haven't been noticed on the bots for a while, the bugs are likely to be fixed. BUG=21259,24715 TEST=TSAN bots should remain green Review URL: http://codereview.chromium.org/384142 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32033 0039d316-1c4b-4281-b951-d872f2087c98
* Remove suppression for a race that was fixed a while ago.jorlow@chromium.org2009-11-131-8/+0
| | | | | | | | | TEST=none BUG=25645 Review URL: http://codereview.chromium.org/385109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31963 0039d316-1c4b-4281-b951-d872f2087c98
* Add suppression for valgrind detected error.levin@chromium.org2009-11-131-0/+16
| | | | | | | | | | TBR=idana@chromium.org BUG=27647 TEST=valgrind (see bug) Review URL: http://codereview.chromium.org/384125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31933 0039d316-1c4b-4281-b951-d872f2087c98
* Add suppression for new mac mem leak.levin@chromium.org2009-11-131-0/+21
| | | | | | | | | | TBR=atwilson@chromium.org BUG=27644 TEST=valgrind (see bug) Review URL: http://codereview.chromium.org/395003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31923 0039d316-1c4b-4281-b951-d872f2087c98
* Updated suppression signature to reflect changed method params.atwilson@chromium.org2009-11-131-1/+1
| | | | | | | | | BUG=22923 TBR=levin@chromium.org Review URL: http://codereview.chromium.org/385087 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31890 0039d316-1c4b-4281-b951-d872f2087c98
* Remove valgrind suppression for 24936asargent@chromium.org2009-11-111-9/+0
| | | | | | | | | | | | | | | From looking at the recent valgrind results, it looks like this bug isn't happening anymore (the suppression isn't mentioned as being used in the output, at least). BUG=24936 TEST=none TBR=mpcomplete git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31722 0039d316-1c4b-4281-b951-d872f2087c98
* Re-add a supression that shouldn't have been removedstuartmorgan@chromium.org2009-11-111-0/+13
| | | | | | | | | | TBR=dank BUG=20541 TEST=Green Mac valgrind bots Review URL: http://codereview.chromium.org/384046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31674 0039d316-1c4b-4281-b951-d872f2087c98