summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Remove suppressions for AtExitManager/Singleton racestimurrrr@chromium.org2010-11-151-29/+0
| | | | | | | | | | These suppressions don't match anything on the bot since r66071 BUG=61585,61753 TBR=glider TEST=TSan/UI remains green Review URL: http://codereview.chromium.org/5008001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66119 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore base::subtle::Barrier_AtomicIncrement under TSantimurrrr@chromium.org2010-11-131-0/+2
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/4970001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66063 0039d316-1c4b-4281-b951-d872f2087c98
* Heapchecker: Add more suppressions for ClientSideDetectionServiceTest.thestig@chromium.org2010-11-131-0/+23
| | | | | | | | | BUG=62943 TEST=Heapchecker goes green? TBR=noelutz Review URL: http://codereview.chromium.org/4963001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66048 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Widen a suppression.thestig@chromium.org2010-11-131-1/+1
| | | | | | | | | BUG=46161 TEST=none TBR=timurrrr Review URL: http://codereview.chromium.org/4962001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66047 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind Mac: Suppress errors in Security::KeychainCore.thestig@chromium.org2010-11-131-0/+30
| | | | | | | | BUG=63024 TEST=none Review URL: http://codereview.chromium.org/4890003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66021 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Suppress layout test error in WebCore::SVGLength::setValueAsString.thestig@chromium.org2010-11-121-0/+14
| | | | | | | | | BUG=63015 TEST=none TBR=dglazkov Review URL: http://codereview.chromium.org/4913001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65993 0039d316-1c4b-4281-b951-d872f2087c98
* More Heapchecker suppressions for StartClientReportPhishingRequest test.thestig@chromium.org2010-11-121-1/+24
| | | | | | | | | BUG=62943 TEST=Heapchecker goes green TBR=noelutz Review URL: http://codereview.chromium.org/4895002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65992 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a benign/false-positive race in ThreadCollisionWarner and a benign ↵timurrrr@chromium.org2010-11-121-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | race in CookieMonster Histogram handling For the first race, the reports look like this: WARNING: Possible data race during write of size 4 at 0080F90C: {{{ T26 (L{}): #0 base::subtle::NoBarrier_Store base/atomicops_internals_x86_msvc.h:67 #1 base::ThreadCollisionWarner::Leave base/thread_collision_warner.cc:60 ... Concurrent write(s) happened at (OR AFTER) these points: T27 (L{}): #0 base::subtle::NoBarrier_Store base/atomicops_internals_x86_msvc.h:66 #1 base::ThreadCollisionWarner::Leave base/thread_collision_warner.cc:60 And the code is: void ThreadCollisionWarner::Leave() { if (subtle::Barrier_AtomicIncrement(&counter_, -1) == 0) { subtle::NoBarrier_Store(&valid_thread_id_, 0); } } TBR=glider BUG=62694 Review URL: http://codereview.chromium.org/4837004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65941 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress Valgrind reports in ↵timurrrr@chromium.org2010-11-122-7/+49
| | | | | | | | | | | safe_browsing::ClientSideDetectionService::StartClientReportPhishingRequest BUG=62943 TBR=glider TEST=./tools/valgrind/waterfall.sh says they are all suppressed Review URL: http://codereview.chromium.org/4890001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65932 0039d316-1c4b-4281-b951-d872f2087c98
* Widen a suppression for bug 57949 (Invalid read inglider@chromium.org2010-11-111-1/+18
| | | | | | | | | | | | AutomatedUITestBase.OpenCloseBrowserWindowWithAccelerator) Suppress bug 62801 (invalid read in PR_Lock) TBR=timurrrr BUG=57949,62801 Review URL: http://codereview.chromium.org/4802001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65788 0039d316-1c4b-4281-b951-d872f2087c98
* checkperms: whitelist third_party/opensslevan@chromium.org2010-11-111-0/+1
| | | | | | | | It has all sorts of +x files. We'll just be careful. Review URL: http://codereview.chromium.org/4771005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65756 0039d316-1c4b-4281-b951-d872f2087c98
* The GPU watchdog timer is always disabled when run with valgrind. Removing ↵apatrick@chromium.org2010-11-111-9/+0
| | | | | | | | | | | suppresion. TEST=mac_valgrind BUG=58244 Review URL: http://codereview.chromium.org/4755002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65753 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run CookieMonsterTest.GarbageCollectionTriggers under TSan/Win - just ↵timurrrr@chromium.org2010-11-101-0/+3
| | | | | | | | | | a little too slow BUG=59642 TBR=rdsmith Review URL: http://codereview.chromium.org/4646007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65671 0039d316-1c4b-4281-b951-d872f2087c98
* Widen a suppression for use-after-free bugtimurrrr@chromium.org2010-11-101-0/+1
| | | | | | | | BUG=62461 TBR=glider Review URL: http://codereview.chromium.org/4747003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65662 0039d316-1c4b-4281-b951-d872f2087c98
* Speed up TSan/Win by simplifying the instrumentation of some STL internalstimurrrr@chromium.org2010-11-101-0/+6
| | | | | | | | | | They account for quite a lot of memory accesses and result in a significant slowdown on some tests TBR=glider TEST=TSan/Win should become faster Review URL: http://codereview.chromium.org/4643006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65661 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress an invalid read in net::SingleRequestHostResolver::Cancel()timurrrr@chromium.org2010-11-101-0/+16
| | | | | | | | BUG=62674 TBR=glider Review URL: http://codereview.chromium.org/4639004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65660 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude some tests failing on Valgrind/Mac UItimurrrr@chromium.org2010-11-101-0/+4
| | | | | | | | TBR=timurrrr BUG=50297,58145 Review URL: http://codereview.chromium.org/4644005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65657 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run IPCSyncChannelTest.BadMessage under TSan on Windowstimurrrr@chromium.org2010-11-101-0/+2
| | | | | | | | BUG=62511 TBR=glider Review URL: http://codereview.chromium.org/4708004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65655 0039d316-1c4b-4281-b951-d872f2087c98
* Widen Valgrind suppressions for bugs 61753 (Leak) and 62461 (Use-after-free)timurrrr@chromium.org2010-11-102-2/+11
| | | | | | | | | BUG=61753,62461 TBR=glider TEST=./tools/valgrind/waterfall.sh Review URL: http://codereview.chromium.org/4651004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65647 0039d316-1c4b-4281-b951-d872f2087c98
* Revert a workaround & exclude filters for TSan/Win failurestimurrrr@chromium.org2010-11-103-12/+0
| | | | | | | | | | | | | a) Unknown nonzero error codes disappeared after the bot recovery (it was showing a "Recovered from a BSOD" message) b) The CookieMonster tests were failing due to slow stl checks in Debug mode. This should be fixed by r65377 and r65384 BUG=62512,59642 TEST=TSan/Win should remain green TBR=glider Review URL: http://codereview.chromium.org/4713003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65646 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore _cthread_fork_child on Mac recursively.glider@chromium.org2010-11-101-0/+10
| | | | | | | | TBR=timurrrr Review URL: http://codereview.chromium.org/4734003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65640 0039d316-1c4b-4281-b951-d872f2087c98
* Fix memory leak in DeviceManagementPolicyProvider.danno@chromium.org2010-11-092-18/+0
| | | | | | | | | BUG=62505 TEST=mac valgrind Review URL: http://codereview.chromium.org/4707002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65568 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress doexit TSan/Win race reportstimurrrr@chromium.org2010-11-091-0/+8
| | | | | | | | TBR=glider BUG=62560 Review URL: http://codereview.chromium.org/4732003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65564 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a policy:: leak on the Heapchecker bottimurrrr@chromium.org2010-11-091-0/+9
| | | | | | | | | BUG=62505 TBR=danno TEST=Heapchecker bot should go green Review URL: http://codereview.chromium.org/4673005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65561 0039d316-1c4b-4281-b951-d872f2087c98
* Temporary workaround -> ignore the Execute retcode on TSan/Wintimurrrr@chromium.org2010-11-091-0/+5
| | | | | | | | TBR=glider BUG=62512 Review URL: http://codereview.chromium.org/4683009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65538 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress memory leaks in policy::DeviceManagementPolicy teststimurrrr@chromium.org2010-11-091-0/+9
| | | | | | | | | BUG=62505 TBR=glider TEST=./tools/valgrind/waterfall.sh Review URL: http://codereview.chromium.org/4683008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65533 0039d316-1c4b-4281-b951-d872f2087c98
* Widen suppressions for the Singleton::OnExit data race and WebDatabase ↵timurrrr@chromium.org2010-11-092-0/+80
| | | | | | | | | | | use-after-free's TBR=glider BUG=61753,62461 TEST=waterfall.sh shows a dramatic decrease of the number of reports Review URL: http://codereview.chromium.org/4742001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65531 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore _updatetlocinfoEx_nolock under TSan/Wintimurrrr@chromium.org2010-11-091-0/+1
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/4722002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65525 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress 2000+ reports from NS/Browser/objc_sendMsgtimurrrr@chromium.org2010-11-091-0/+32
| | | | | | | | BUG=62461 TBR=glider Review URL: http://codereview.chromium.org/4738002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65512 0039d316-1c4b-4281-b951-d872f2087c98
* Move the valgrind suppression for bug 61685 to the "Can't fix" section.suzhe@chromium.org2010-11-081-14/+15
| | | | | | | | | | | | | | | | | | | By checking the source code of gtk+-2.12.x, I believe it's a bug of gtk and should already be fixed in recent version. See the source code of gtk+-2.12.9: http://git.gnome.org/browse/gtk+/tree/gtk/gtkimmulticontext.c?id=GTK_2_12_9#n230 global_context_id is allocated in _gtk_im_module_get_default_context_id() by calling g_strdup(), but it never gets freed. In the latest gtk code: http://git.gnome.org/browse/gtk+/tree/gtk/gtkimmodule.c?id=2.20.1#n663 _gtk_im_module_get_default_context_id() just returns a pointer to a string literal instead of a duplicated string. BUG=61685 TEST=none Review URL: http://codereview.chromium.org/4715002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65441 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a leak in wifi geolocation on the Macstuartmorgan@chromium.org2010-11-081-13/+0
| | | | | | | | | | | According to the comment in the reverse-engineered header, the returned arrays are allocated by the function, which would mean the client is responsible for freeing them. BUG=None TEST=Greener valgrind bots. Review URL: http://codereview.chromium.org/4545002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65389 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a leak.skerner@chromium.org2010-11-081-10/+23
| | | | | | | | BUG=62346 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65380 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run HTTPSRequestTest tests under Valgrind on Mactimurrrr@chromium.org2010-11-082-3/+4
| | | | | | | | BUG=62314 TBR=glider Review URL: http://codereview.chromium.org/4682001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65370 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run SSLClientSocketTest tests under Valgrindtimurrrr@chromium.org2010-11-081-1/+1
| | | | | | | | | BUG=62314 TEST=Valgrind&TSan mac bots should go green TBR=glider Review URL: http://codereview.chromium.org/4675001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65359 0039d316-1c4b-4281-b951-d872f2087c98
* Use less TSan ignores for base/atomic*timurrrr@chromium.org2010-11-082-7/+4
| | | | | | | TEST=TSan bots on the memory waterfall should remain green Review URL: http://codereview.chromium.org/4671001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65357 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run SSLClientSocketTest.Connect tests under Valgrindtimurrrr@chromium.org2010-11-081-0/+3
| | | | | | | | | BUG=62314 TBR=glider TEST=Valgrind&TSan Mac bots should go green Review URL: http://codereview.chromium.org/4670001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65356 0039d316-1c4b-4281-b951-d872f2087c98
* Update expectations for xpdual/moz.chase@chromium.org2010-11-071-3/+3
| | | | | | | | | | | | | | | | - total_op_b went up around r65182, bug for that is 62272 - total_byte_r and total_byte_b went up around r64763, bug for that is 62274. BUG=62272, 62274 TEST=xp perf is green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/4652001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65343 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 65329 - Revert 65272 - Autofill heapcheck and valgrind leak in ↵jar@chromium.org2010-11-072-26/+0
| | | | | | | | | | | | | | | | | | | | | PersonalDataManager unit test fixed [Redness was not healed... so I'm reverting the revert] An early return in the WebDataService was the source of a leak in PersonalDataManagerTest.Refresh test. This fixes it. Also, some small cleanup in the test itself. BUG=61988 TEST=Memory bots stay green. Review URL: http://codereview.chromium.org/4612001 TBR=dhollowa@chromium.org Review URL: http://codereview.chromium.org/4641001 TBR=jar@chromium.org Review URL: http://codereview.chromium.org/4643001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65330 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 65272 - Autofill heapcheck and valgrind leak in PersonalDataManager ↵jar@chromium.org2010-11-072-0/+26
| | | | | | | | | | | | | | | | | | unit test fixed [There is a lot of red on valgrind now... so trying a revert] An early return in the WebDataService was the source of a leak in PersonalDataManagerTest.Refresh test. This fixes it. Also, some small cleanup in the test itself. BUG=61988 TEST=Memory bots stay green. Review URL: http://codereview.chromium.org/4612001 TBR=dhollowa@chromium.org Review URL: http://codereview.chromium.org/4641001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65329 0039d316-1c4b-4281-b951-d872f2087c98
* Fix heapcheck suppressions for renamed JingleChromotocolConnection.sergeyu@chromium.org2010-11-051-24/+2
| | | | | | | | | BUG=62078 TEST=heapcheck Review URL: http://codereview.chromium.org/4584002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65278 0039d316-1c4b-4281-b951-d872f2087c98
* Autofill heapcheck and valgrind leak in PersonalDataManager unit test fixeddhollowa@chromium.org2010-11-052-26/+0
| | | | | | | | | | | An early return in the WebDataService was the source of a leak in PersonalDataManagerTest.Refresh test. This fixes it. Also, some small cleanup in the test itself. BUG=61988 TEST=Memory bots stay green. Review URL: http://codereview.chromium.org/4612001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65272 0039d316-1c4b-4281-b951-d872f2087c98
* Widen an NSS invalid jump suppressionstuartmorgan@chromium.org2010-11-051-1/+0
| | | | | | | | | | | TBR=mattm BUG=60890 TEST=Greener valgrind bots Review URL: http://codereview.chromium.org/4518004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65219 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a heapcheck leak in remoting/cricketstuartmorgan@chromium.org2010-11-051-0/+22
| | | | | | | | | | | TBR=akalin BUG=62078 TEST=Green heapcheck bot Review URL: http://codereview.chromium.org/4577002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65209 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress more leaks in PersonalDataManagerTeststuartmorgan@chromium.org2010-11-051-1/+7
| | | | | | | | | | | TBR=dhollowa BUG=61988 TEST=Greener valgrind bots Review URL: http://codereview.chromium.org/4578002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65206 0039d316-1c4b-4281-b951-d872f2087c98
* Autofill heapcheck and valgrind leak in PersonalDataManager unit test ↵dhollowa@chromium.org2010-11-042-0/+20
| | | | | | | | | | | suppression BUG=61988 TEST=Memory bots go green. Review URL: http://codereview.chromium.org/4541001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65143 0039d316-1c4b-4281-b951-d872f2087c98
* Move the suppression for CallMyActivateTSMDocument() into Category 2 ↵rsesek@chromium.org2010-11-041-21/+24
| | | | | | | | | | | (intentional/won't fix). BUG=61816 TEST=no change Review URL: http://codereview.chromium.org/4435004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65112 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a new Mac valgrind leakstuartmorgan@chromium.org2010-11-041-0/+22
| | | | | | | | | | | TBR=thakis BUG=61929 TEST=Greener valgrind bots Review URL: http://codereview.chromium.org/4491001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65090 0039d316-1c4b-4281-b951-d872f2087c98
* Fix memory leak in FormStructuregeorgey@chromium.org2010-11-041-49/+0
| | | | | | | | BUG=61424 TEST=valgrind tests should pass. Review URL: http://codereview.chromium.org/4104016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65076 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run DirectoryListerTest.BigDirRecursiveTest under TSantimurrrr@chromium.org2010-11-041-0/+3
| | | | | | | | BUG=61908 TBR=glider Review URL: http://codereview.chromium.org/4484001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65056 0039d316-1c4b-4281-b951-d872f2087c98
* Update the gtest exclude filter for TSan and Dr. Memory to account for test ↵timurrrr@chromium.org2010-11-042-8/+8
| | | | | | | | | | case being renamed BUG=57832 TBR=garykac Review URL: http://codereview.chromium.org/4425003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65049 0039d316-1c4b-4281-b951-d872f2087c98