summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Fix the suppression rule for Bug 30667.hbono@chromium.org2010-05-211-2/+6
| | | | | | | | | | | This change is just for catching up with your SpdyFramer change (r47886). TBR=mbelshe BUG=30667 TEST=make the "Linux Tests (valgrind)(3)" bot green. Review URL: http://codereview.chromium.org/2078027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47906 0039d316-1c4b-4281-b951-d872f2087c98
* VideoDecoderImpl Mock Engine leak callback.jiesun@google.com2010-05-201-6/+0
| | | | | | Review URL: http://codereview.chromium.org/2085013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47857 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce the suppression text for the zlib inflate leakage.mbelshe@chromium.org2010-05-201-40/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/2106013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47855 0039d316-1c4b-4281-b951-d872f2087c98
* Add heapcheck supression for 44667.cbentzel@chromium.org2010-05-201-0/+6
| | | | | | | | | BUG=44667 TEST=None Review URL: http://codereview.chromium.org/2128017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47834 0039d316-1c4b-4281-b951-d872f2087c98
* Add suppression for 44667.cbentzel@chromium.org2010-05-201-0/+6
| | | | | | | | | BUG=44667 TEST=None Review URL: http://codereview.chromium.org/2094016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47822 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed sync unit test leak and removed suppression.akalin@chromium.org2010-05-202-26/+0
| | | | | | | | | BUG=44540 TEST=ran valgrind on sync unit tests Review URL: http://codereview.chromium.org/2105011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47771 0039d316-1c4b-4281-b951-d872f2087c98
* Fix grit unittests.tony@chromium.org2010-05-203-2/+4
| | | | | | | | | | | | | | The two rc unittests are failing because it appears the data files checked into svn don't match. It's easier to change the tests because the data is in a different (internal only) repo. AFAICT, this has been broken forever. The other fix is because a test became more correct after r43930, but the test was passing anyway. Review URL: http://codereview.chromium.org/2131013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47756 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore accesses below ChromeThread::GetCurrentThreadIdentifiertimurrrr@chromium.org2010-05-192-14/+5
| | | | | | | | BUG=44580 TBR=cbentzel,glider Review URL: http://codereview.chromium.org/2092016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47707 0039d316-1c4b-4281-b951-d872f2087c98
* Add heapcheck suppression for bug 44540.glider@chromium.org2010-05-191-0/+12
| | | | | | | | | BUG=44540 TBR=hbono,akakin Review URL: http://codereview.chromium.org/2100007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47665 0039d316-1c4b-4281-b951-d872f2087c98
* Remove suppressions for a couple of benign races in base::Threadtimurrrr@chromium.org2010-05-191-32/+0
| | | | | | | | | The new version of ThreadSanitizer (rev2088) finally has support for automatically suppressing benign data races on vfptr. The harmful data races will still be reported. BUG=23245,25385 TEST=TSan bots should remain green Review URL: http://codereview.chromium.org/2099009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47664 0039d316-1c4b-4281-b951-d872f2087c98
* Fix analyze on TSan/Wintimurrrr@chromium.org2010-05-191-2/+5
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/2131016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47653 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes a typo in my suppression.hbono@chromium.org2010-05-191-6/+2
| | | | | | | | | TBR=hbono BUG=44540 TEST=make valgrind bots green. Review URL: http://codereview.chromium.org/2119008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47642 0039d316-1c4b-4281-b951-d872f2087c98
* Suppresses the leak in sync_api::SyncManager::Init().hbono@chromium.org2010-05-191-0/+18
| | | | | | | | | TBR=akakin BUG=44540 TEST=make the valgrind bots green. Review URL: http://codereview.chromium.org/2072011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47638 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a race on logfiles for UI teststimurrrr@chromium.org2010-05-191-2/+4
| | | | | | | | Looks like a few browser wrappers can exist at the same time thus resulting in reading/deleting each other's Valgrind log files Review URL: http://codereview.chromium.org/2131014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47636 0039d316-1c4b-4281-b951-d872f2087c98
* AppCache*Test: do not use ScopedRunnableMethodFactory from multiple threads.mattm@chromium.org2010-05-191-8/+0
| | | | | | | | | | | The event_ signaling should already prevent the testcase from being deleted before the test is done, so we can just post the tasks directly. BUG=24715 TEST=tools/valgrind/chrome_tests.sh --tool=tsan -t test_shell --gtest_filter='AppCache*' Review URL: http://codereview.chromium.org/2121005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47605 0039d316-1c4b-4281-b951-d872f2087c98
* Restore some of the inflate filters which I had removed.mbelshe@chromium.org2010-05-181-0/+65
| | | | | | | | | | | I will do some more work to minimize these after this is checked in. BUG=none TEST=none Review URL: http://codereview.chromium.org/2101005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47560 0039d316-1c4b-4281-b951-d872f2087c98
* Do Valgrind analyze separately for each UI testtimurrrr@chromium.org2010-05-182-8/+45
| | | | | | | | | Example TSan/UI output: http://bit.ly/aiHPUM (bit.ly because of %20 / %2520 URL issues) Example Memcheck/UI output: http://bit.ly/doWdch // I've locally hacked TSan UI FYI bot to run memcheck Review URL: http://codereview.chromium.org/2110003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47547 0039d316-1c4b-4281-b951-d872f2087c98
* Add valgrind suppressions which cover zlib inflate and deflate.mbelshe@chromium.org2010-05-181-59/+46
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/2077007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47535 0039d316-1c4b-4281-b951-d872f2087c98
* Split coverage into build and run phases in preparation for splittingjrg@chromium.org2010-05-182-2/+87
| | | | | | | | | | | | | | it into 2 distinct buildbot phases. Add changes to reduce size or increase speed of coverage builds. Add 'bundle files' mechanism to process_coverage.py to make the above split easier. Add unit test for said mechanism. TEST=build coverage on 10.6 and watch it work. Review URL: http://codereview.chromium.org/2121003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47496 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a Mac ui_tests leakasargent@chromium.org2010-05-171-0/+24
| | | | | | | | | | This started occuring with revisions 47419 and 47420. BUG=44393 TBR=glotov git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47446 0039d316-1c4b-4281-b951-d872f2087c98
* Restore a suppression for a race in test_shell.timurrrr@chromium.org2010-05-171-0/+8
| | | | | | | | | Looks like I wasn't running test_shell for a while when I decided that the race is gone BUG=24715 TBR=glider Review URL: http://codereview.chromium.org/2103004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47416 0039d316-1c4b-4281-b951-d872f2087c98
* Generalize vptr-related suppressions to work on Windows.timurrrr@chromium.org2010-05-171-5/+5
| | | | | | | | Looks like we print different stacks for dtors on Valgrind and PIN TBR=glider Review URL: http://codereview.chromium.org/2086006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47403 0039d316-1c4b-4281-b951-d872f2087c98
* Add some more TSan ignorestimurrrr@chromium.org2010-05-172-0/+5
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/2067012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47402 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress bug 44354 (leaks in NetTestSuite::Initialize)glider@chromium.org2010-05-171-0/+7
| | | | | | | | | BUG=44354 TBR=brettw Review URL: http://codereview.chromium.org/2091008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47400 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress memory test failurestyoshino@chromium.org2010-05-171-0/+17
| | | | | | | | | | | BUG=44341 TEST=none TBR=asargent,cevans,glotov Review URL: http://codereview.chromium.org/2098010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47399 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore the CFDictionary operations, which are known to use unannotatedglider@chromium.org2010-05-171-2/+3
| | | | | | | | | | synchronization primitives. TBR=timurrrr Review URL: http://codereview.chromium.org/2107007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47398 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress new Valgrind errorstyoshino@chromium.org2010-05-171-0/+26
| | | | | | | | | | BUG=44341 TEST=none TBR=rvargas Review URL: http://codereview.chromium.org/2079006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47394 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed media_unittests.sergeyu@chromium.org2010-05-151-14/+0
| | | | | | | | | | BUG=44253,44254 TEST=media_unittests succeeds when run in valgrind TBR=ajwong@chromium.org Review URL: http://codereview.chromium.org/2103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47374 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude 4 tests in AlsaPcmOutputStreamTest due to test failure.oshima@chromium.org2010-05-151-0/+14
| | | | | | | | | | | | | | | Suppressing memcheck:cond error. Following CL seems to be culprit. http://src.chromium.org/viewvc/chrome?view=rev&revision=47333 BUG=44253,44254 TEST=linux/chromeos valgrind should cycle green TBR=sergeyu@chromium.org Review URL: http://codereview.chromium.org/2076003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47361 0039d316-1c4b-4281-b951-d872f2087c98
* Supress a mac valgrind leak.rvargas@google.com2010-05-141-0/+13
| | | | | | | | | | BUG=44130 TEST=none TBR=brettw Review URL: http://codereview.chromium.org/2092005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47299 0039d316-1c4b-4281-b951-d872f2087c98
* Adding back suppression that is mistakely removed in r47251oshima@chromium.org2010-05-141-0/+13
| | | | | | | | | | BUG=44130 TEST=none TBR=hbono@chromium.org Review URL: http://codereview.chromium.org/2113003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47279 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a typo in suppressionstimurrrr@chromium.org2010-05-141-1/+1
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/2133001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47263 0039d316-1c4b-4281-b951-d872f2087c98
* Update race-on-vptr suppressions (TSan now supports a better format) and ↵timurrrr@chromium.org2010-05-141-4/+10
| | | | | | | | | | suppress one benign race in sync BUG=25385,44168 TBR=glider Review URL: http://codereview.chromium.org/2065005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47262 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind cond error fix. Initialize uninitialized member variable.oshima@chromium.org2010-05-141-24/+0
| | | | | | | | | | BUG=44147 TEST=valgrind bot should stay gree. TBR=tyoshino@chromium.org,rvargas@chromium.org Review URL: http://codereview.chromium.org/2071006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47251 0039d316-1c4b-4281-b951-d872f2087c98
* Extend Valgrind suppression rule for Chromium OS to match leak occurs on ↵tyoshino@chromium.org2010-05-141-1/+1
| | | | | | | | | | | | | | TestSuite. Leak in chromeos::CrosLibrary::~CrosLibrary BUG=44147 TEST=none TBR=rvargas Review URL: http://codereview.chromium.org/2089007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47245 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress Valgrind detected leak in ↵tyoshino@chromium.org2010-05-141-1/+1
| | | | | | | | | | | | | | WebCore::V8DOMWrapper::wrapNativeNodeFilter by updating existing suppression rule for leaks at this point. BUG=37439 TEST=none TBR=rvargas Review URL: http://codereview.chromium.org/2112002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47243 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a valgrind detected leak.rvargas@google.com2010-05-141-0/+13
| | | | | | | | | | BUG=44130 TEST=none TBR=brettw Review URL: http://codereview.chromium.org/2111003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47231 0039d316-1c4b-4281-b951-d872f2087c98
* Supress a valgrind error for cros.rvargas@google.com2010-05-141-0/+11
| | | | | | | | | | | BUG=44147 TEST=none TBR=oshima Review URL: http://codereview.chromium.org/2127003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47230 0039d316-1c4b-4281-b951-d872f2087c98
* Supress some heap check leaks.rvargas@google.com2010-05-131-1/+14
| | | | | | | | | | BUG=44130 TEST=none TBR=brettw Review URL: http://codereview.chromium.org/2123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47220 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a valgrind supression to include two failures.rvargas@google.com2010-05-131-2/+2
| | | | | | | | | | BUG=44090 TEST=none Review URL: http://codereview.chromium.org/2120001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47208 0039d316-1c4b-4281-b951-d872f2087c98
* Merge two Valgrind failures into one supression.rvargas@google.com2010-05-131-19/+2
| | | | | | | | | BUG=44090 TEST=none Review URL: http://codereview.chromium.org/2099001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47163 0039d316-1c4b-4281-b951-d872f2087c98
* Supress new valgrind leaks for mac unit tests.rvargas@google.com2010-05-131-0/+34
| | | | | | | | | | BUG=44090 TEST=none TBR=jeremy, tyoshino Review URL: http://codereview.chromium.org/2085002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47158 0039d316-1c4b-4281-b951-d872f2087c98
* Extend Memcheck and ThreadSanitizer commentstimurrrr@chromium.org2010-05-131-2/+10
| | | | | | | TBR=glider,thestig Review URL: http://codereview.chromium.org/2065002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47138 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress new Valgrind memcheck failure on Chromium Mac UI (3)tyoshino@chromium.org2010-05-131-0/+26
| | | | | | | | | | TEST=none BUG=44053 TBR=rvargas Review URL: http://codereview.chromium.org/2073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47130 0039d316-1c4b-4281-b951-d872f2087c98
* Re-factor valgrind_test.py (splitted Valgrind-specific stuff into a class) ↵timurrrr@chromium.org2010-05-131-143/+246
| | | | | | | | and added support for TSan/Win Review URL: http://codereview.chromium.org/1996016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47129 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Suppress a CrOS memory leak in FilebrowseHandler::Init.thestig@chromium.org2010-05-111-0/+12
| | | | | | | | | BUG=43914 TEST=Valgrind CrOS goes green. TBR=dhg Review URL: http://codereview.chromium.org/2017011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46962 0039d316-1c4b-4281-b951-d872f2087c98
* Add more ignore rules to TSan/Wintimurrrr@chromium.org2010-05-111-1/+13
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/1990013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46919 0039d316-1c4b-4281-b951-d872f2087c98
* Move empty_rep-specific reports from cross-platform to Mac-specific file.timurrrr@chromium.org2010-05-112-12/+15
| | | | | | | | TBR=glider TEST=TSan/Linux should remain green, tested locally Review URL: http://codereview.chromium.org/2048008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46914 0039d316-1c4b-4281-b951-d872f2087c98
* Extend the suppression for bug 43775 to match ↵glider@chromium.org2010-05-111-3/+18
| | | | | | | | | | | ExtensionAPIClientTest.GetAcceptLanguages BUG=43775 TBR=thestig Review URL: http://codereview.chromium.org/2009009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46902 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress all leaks in SpdyNetworkTransactionTest.PostWithEarlySynReplyglider@chromium.org2010-05-111-0/+7
| | | | | | | | | | | This change affects only the Linux Heapcheck bot. BUG=43387 TBR=mbelshe Review URL: http://codereview.chromium.org/2055012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46898 0039d316-1c4b-4281-b951-d872f2087c98