summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Remove Mac-specific sanity test expectations since "-O1 -g ..." is back ↵timurrrr@chromium.org2010-08-192-72/+2
| | | | | | | | | | | thanks to the new 10.6 Valgrind builder This patch partly reverts r53308 and r53408 BUG=49253 TEST=tested locally on Linux and Mac Review URL: http://codereview.chromium.org/3158024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56662 0039d316-1c4b-4281-b951-d872f2087c98
* Supress a valgrind leak for mac UI tests.rvargas@google.com2010-08-191-0/+14
| | | | | | | | | | | BUG=52681 TEST=none TBR=slightlyoff Review URL: http://codereview.chromium.org/3189009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56640 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress SessionModelAssociator leaks.rvargas@google.com2010-08-181-0/+16
| | | | | | | | | | BUG=52552 TEST=none TBR=slightlyoff Review URL: http://codereview.chromium.org/3164025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56572 0039d316-1c4b-4281-b951-d872f2087c98
* Suppressions for pile of leaks caused by sessions sync patch.tim@chromium.org2010-08-181-0/+8
| | | | | | | | BUG=52252 Review URL: http://codereview.chromium.org/3159021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56489 0039d316-1c4b-4281-b951-d872f2087c98
* Update a suppression with new method signature ↵eroman@chromium.org2010-08-181-2/+2
| | | | | | | | | | (net::TestServerLauncher::LoadTestRootCert() got refactored to net::TestServer::LoadTestRootCert). BUG=52542 TBR=phajdan.jr Review URL: http://codereview.chromium.org/3174013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56475 0039d316-1c4b-4281-b951-d872f2087c98
* wildcard out the anonymous namespacejoth@chromium.org2010-08-171-2/+2
| | | | | | | | | | | follow up to http://codereview.chromium.org/3170023/show BUG=none TEST=none Review URL: http://codereview.chromium.org/3193003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56383 0039d316-1c4b-4281-b951-d872f2087c98
* Update suppressions to reference StringPrintf in namespace base.joth@chromium.org2010-08-171-5/+7
| | | | | | | | | | Follow up to http://src.chromium.org/viewvc/chrome?view=rev&revision=56299 BUG=22109,16096 Review URL: http://codereview.chromium.org/3170023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56372 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress data race on environtimurrrr@chromium.org2010-08-171-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | This has reappeared on TSan UI FYI bot between r56211 and r56252 http://build.chromium.org/buildbot/waterfall.fyi/builders/Linux%20Tests%20(tsan%20ui)/builds/1796 Sample "getenv" callstack: Concurrent read(s) happened at (OR AFTER) these points: T0 (WR-L{L144}/RD-L{L1, L36, L144}): #0 getenv /lib/tls/i686/cmov/libc-2.7.so #1 __dcigettext /lib/tls/i686/cmov/libc-2.7.so #2 dcgettext /lib/tls/i686/cmov/libc-2.7.so #3 gdk_pango_renderer_class_intern_init /build/buildd/gtk+2.0-2.12.9/gdk/gdkpango.c:487 #4 g_type_class_ref /build/buildd/glib2.0-2.16.6/gobject/gtype.c:1880 #5 g_type_class_ref /build/buildd/glib2.0-2.16.6/gobject/gtype.c:2400 #6 g_object_new_valist /build/buildd/glib2.0-2.16.6/gobject/gobject.c:988 #7 g_object_new /build/buildd/glib2.0-2.16.6/gobject/gobject.c:795 #8 gtk_text_layout_draw /build/buildd/gtk+2.0-2.12.9/gtk/gtktextdisplay.c:731 #9 gtk_text_view_expose_event /build/buildd/gtk+2.0-2.12.9/gtk/gtktextview.c:4462 TBR=glider TEST=TSan/UI should become greener BUG=41314 Review URL: http://codereview.chromium.org/3191005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56345 0039d316-1c4b-4281-b951-d872f2087c98
* Fix format for suppression hash in memcheck_analyze.pyjochen@chromium.org2010-08-171-3/+3
| | | | | | | | | BUG=52415 TEST=none Review URL: http://codereview.chromium.org/3104014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56336 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress valgrind failure on mac ui tests, where callback is being invoked ↵eroman@chromium.org2010-08-171-0/+11
| | | | | | | | | | on freed object. BUG=52387 TBR=mpcomplete Review URL: http://codereview.chromium.org/3181017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56301 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress chrome os leak in system settings.eroman@chromium.org2010-08-171-0/+18
| | | | | | | | BUG=52371 TBR=mpcomplete Review URL: http://codereview.chromium.org/3127015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56294 0039d316-1c4b-4281-b951-d872f2087c98
* Remove +x from a source file.evan@chromium.org2010-08-171-1/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56286 0039d316-1c4b-4281-b951-d872f2087c98
* Widen variance window for linux-hardy/moz.chase@chromium.org2010-08-171-1/+1
| | | | | | | | | | BUG=none TEST=linux-hardy/moz is green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/3146017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56274 0039d316-1c4b-4281-b951-d872f2087c98
* Update linux/moz to use new perf format.chase@chromium.org2010-08-162-9/+23
| | | | | | | | | | | | | | | This is a test. If this test passes, I'll convert the rest of the measures. It includes a change to the expectations to account for this test's new performance. If it didn't include that change, the line would be improve: -9, regress: 9. BUG=none TEST=linux/moz is green Review URL: http://codereview.chromium.org/3115012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56267 0039d316-1c4b-4281-b951-d872f2087c98
* Add a valgrind suppression for memory errors inside of ↵eroman@chromium.org2010-08-161-0/+27
| | | | | | | | | CGPDFDrawingContextDraw() which have been happening on mac UI tests. BUG=52364 Review URL: http://codereview.chromium.org/3125013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56264 0039d316-1c4b-4281-b951-d872f2087c98
* Edit one more perf expectation. Also potentially caused by 56044: WebKit ↵nsylvain@chromium.org2010-08-161-1/+1
| | | | | | | | merge 65180:65318 Review URL: http://codereview.chromium.org/3119015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56178 0039d316-1c4b-4281-b951-d872f2087c98
* Adjust one more perf expectation that is randomly turning red.nsylvain@chromium.org2010-08-161-1/+1
| | | | | | Review URL: http://codereview.chromium.org/3108021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56177 0039d316-1c4b-4281-b951-d872f2087c98
* Fix redness in the tree by silencing all the perf tests that are failing.nsylvain@chromium.org2010-08-161-6/+6
| | | | | | | | | | | | | | | | Most of the errors look like it came from the V8 merge a while back, but the perf expectations were a little bit too strict. 2 new perf regressions, both fairly small: xp perf intl2: http://build.chromium.org/buildbot/perf/xp-release-dual-core/intl2/report.html?history=140&rev=55952 Blame: 55671 (ananta) xp perf intl1: http://build.chromium.org/buildbot/perf/xp-release-dual-core/intl1/report.html?history=100&rev=56174 Only 0.5%. Blame: Possibly 56044 (WebKit merge 65180:65318) Review URL: http://codereview.chromium.org/3121018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56176 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize all data members in HTTPResponseInfo's new ctor and remove the ↵michaeln@chromium.org2010-08-131-13/+0
| | | | | | | | | | | related valgrind suppression. BUG=51940 TEST=n/a Review URL: http://codereview.chromium.org/3163010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56068 0039d316-1c4b-4281-b951-d872f2087c98
* Fix more races in TopSites: race on waiting_for_results_ and on top_sites_.size.nshkrob@chromium.org2010-08-131-7/+0
| | | | | | | | | BUG=51890 TEST=tsan ui memory bot Review URL: http://codereview.chromium.org/3131015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56034 0039d316-1c4b-4281-b951-d872f2087c98
* Auto-generate ADM filesdanno@chromium.org2010-08-1314-1/+780
| | | | | | | | | | | | This is the first iteration of my work on the policy MCX/ADM/ADMX/HTML generator. I added chrome/app/policy/policy_templates.grd and a grit extension that parses this file and chrome/app/policy/policy_templates.json and then generates the en-US version of chrome.adm from them. The infrastructure is already in place for other languages and output formats. BUG=49316 TEST=policy_template_generator_unittest.py and manual tests of chrome.adm Review URL: http://codereview.chromium.org/3068012 Patch from Gabor Feher <gfeher@google.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56019 0039d316-1c4b-4281-b951-d872f2087c98
* Resuppress TopSites races until http://codereview.chromium.org/3131015/show ↵nshkrob@chromium.org2010-08-131-0/+7
| | | | | | | | | | | | is committed. BUG=51890 TBR=timurrr TEST=tsan ui memory bot should go green Review URL: http://codereview.chromium.org/3161013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55982 0039d316-1c4b-4281-b951-d872f2087c98
* Fix race conditions in TopSites.nshkrob@chromium.org2010-08-121-7/+0
| | | | | | | | | BUG=51890 TEST=tsan ui_tests Review URL: http://codereview.chromium.org/3158010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55932 0039d316-1c4b-4281-b951-d872f2087c98
* Add suppression for pwrite64 of unititialized memory in AppCacheUITeststuartmorgan@chromium.org2010-08-122-3/+16
| | | | | | | | | | | Also fixes the presubmit check so that it doesn't fail Memcheck:Param suppressions, since it currently prevents this change. BUG=51940 TEST=Greener valgrind bots Review URL: http://codereview.chromium.org/3173012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55922 0039d316-1c4b-4281-b951-d872f2087c98
* Add NSS PKCS12 import/export functions to CertDatabase.mattm@chromium.org2010-08-121-0/+67
| | | | | | | | | | | Use sql: prefix when opening NSS UserDB (this will affect existing Chromeos installations, which had been using the old berkelydb format.) BUG=19991,51327,51328,51330,51332 TEST=net/base/cert_database_nss_unittest.cc Review URL: http://codereview.chromium.org/3018038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55916 0039d316-1c4b-4281-b951-d872f2087c98
* Remove histogram memleak suppression.erikchen@google.com2010-08-121-52/+0
| | | | | | | | | | No longer able to reproduce this bug locally or on try-bots. BUG=45263 TEST=none Review URL: http://codereview.chromium.org/3175005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55904 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress all data races in TopSitestimurrrr@chromium.org2010-08-121-10/+2
| | | | | | | | | | | There are just too many different stacks with (probably) the same cause. Merging two suppression into one quite wide suppression matching everything below history::TopSites BUG=51890 TBR=glider Review URL: http://codereview.chromium.org/3155007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55880 0039d316-1c4b-4281-b951-d872f2087c98
* Widen suppression for the data race in TopSitestimurrrr@chromium.org2010-08-121-2/+1
| | | | | | | | BUG=51890 TBR=glider Review URL: http://codereview.chromium.org/3135010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55879 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress data race in UI (bug 51890) and remove a suppression for a race ↵timurrrr@chromium.org2010-08-121-6/+16
| | | | | | | | | | fixed long ago (25915) BUG=51890,25915 TBR=glider Review URL: http://codereview.chromium.org/3130012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55876 0039d316-1c4b-4281-b951-d872f2087c98
* Perf expectations updates for xpdual.chase@chromium.org2010-08-121-5/+5
| | | | | | | | | | | | | | - xpdual/dhtml/times - dhtml speedup - xpdual/intl1/times - slowdown (unknown cause) - xpdual/moz results - new variability in results BUG=51863 TEST=xpdual/dhtml, intl1, and moz are green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/3172007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55833 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Add NSS PKCS12 import/export functions to CertDatabase." which ↵mattm@chromium.org2010-08-111-67/+0
| | | | | | | | | | | | failed compile on chromeos. This reverts commit r55798. BUG=19991,51327,51328,51330,51332 Review URL: http://codereview.chromium.org/3169007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55804 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 54861 - Suppression for leak in Preconnect::PreconnectOnIOThread.jar@chromium.org2010-08-111-14/+0
| | | | | | | | | | | | | The leak is hopefully fixed via revision 55435, so I'm backing out the suppresion. BUG=51133 TEST=None R=cbentzel Review URL: http://codereview.chromium.org/3116001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55801 0039d316-1c4b-4281-b951-d872f2087c98
* Add NSS PKCS12 import/export functions to CertDatabase.mattm@chromium.org2010-08-111-0/+67
| | | | | | | | | | | Use sql: prefix when opening NSS UserDB (this will affect existing Chromeos installations, which had been using the old berkelydb format.) BUG=19991,51327,51328,51330,51332 TEST=net/base/cert_database_nss_unittest.cc Review URL: http://codereview.chromium.org/3018038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55798 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Convert mac10.6/dhtml/times to new expectations format."chase@chromium.org2010-08-112-23/+9
| | | | | | | | | | | | This reverts r55769. BUG=none TEST=mac10.6/dhtml passes TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/3151009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55779 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress leak errors.jianli@chromium.org2010-08-111-0/+25
| | | | | | | | | | | This happens with linux valgrind layout test with WebKit roll 64970:65072. BUG=51822 TEST=none Review URL: http://codereview.chromium.org/3177007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55774 0039d316-1c4b-4281-b951-d872f2087c98
* Convert mac10.6/dhtml/times to new expectations format.chase@chromium.org2010-08-112-9/+23
| | | | | | | | | | | Update unit tests. BUG=none TEST=mac10.6/dhtml is orange Review URL: http://codereview.chromium.org/3180002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55769 0039d316-1c4b-4281-b951-d872f2087c98
* Quick-fix for syntax error in memcheck_analyze.pytimurrrr@chromium.org2010-08-111-1/+1
| | | | | | | TBR=glider,jochen Review URL: http://codereview.chromium.org/3108009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55718 0039d316-1c4b-4281-b951-d872f2087c98
* Never create "negative" hashes and output the error hash along with the ↵jochen@chromium.org2010-08-112-4/+22
| | | | | | | | | | | suppression. BUG=none TEST=none Review URL: http://codereview.chromium.org/3107005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55717 0039d316-1c4b-4281-b951-d872f2087c98
* Suppression for memory leak in Mac tabpose.jochen@chromium.org2010-08-111-0/+9
| | | | | | | | | | BUG=51786 TEST=none TBR=glider Review URL: http://codereview.chromium.org/3120008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55715 0039d316-1c4b-4281-b951-d872f2087c98
* Add blame support to waterfall.shjochen@chromium.org2010-08-111-8/+121
| | | | | | | | | BUG=51584 TEST=none Review URL: http://codereview.chromium.org/3132006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55711 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress another stack for bug 34554 (Leak in WebEventListnerTest)glider@chromium.org2010-08-111-1/+9
| | | | | | | | | TBR=jochen BUG=34554 Review URL: http://codereview.chromium.org/3153004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55710 0039d316-1c4b-4281-b951-d872f2087c98
* Make the Valgrind Linux bot greener:glider@chromium.org2010-08-111-1/+28
| | | | | | | | | | | | | Add another suppression for bug 46162 (Leak in WTF::ThreadSpecific<WTF::WTFThreadData>::set()) Suppress bug 51170 (leak in localtime_r) BUG=51170,46162 TBR=jochen Review URL: http://codereview.chromium.org/3123007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55702 0039d316-1c4b-4281-b951-d872f2087c98
* Delete callbacks after use in canned browsing data helpers.jochen@chromium.org2010-08-112-20/+0
| | | | | | | | | BUG=49750 TEST=Canned*.* Review URL: http://codereview.chromium.org/3178001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55688 0039d316-1c4b-4281-b951-d872f2087c98
* Build just chrome to shorten the Coverity build and analysiswtc@chromium.org2010-08-111-7/+6
| | | | | | | | | | | | | time. Remove a stale TODO comment. R=bevc,jimhebert BUG=none TEST=none Review URL: http://codereview.chromium.org/3175001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55637 0039d316-1c4b-4281-b951-d872f2087c98
* Update the suppresion file.jianli@chromium.org2010-08-101-0/+30
| | | | | | | | | | BUG=46571 TEST=none TBR=lzheng Review URL: http://codereview.chromium.org/3133004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55631 0039d316-1c4b-4281-b951-d872f2087c98
* Update xpdual/moz/total_byte_r.chase@chromium.org2010-08-101-1/+1
| | | | | | | | | | | | | Looks like this result can be flaky, so give it a new delta and var to keep the step green most of the time. BUG=none TEST=xpdual/moz is green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/3158003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55623 0039d316-1c4b-4281-b951-d872f2087c98
* Fix CrosLibrary::TestApi valgrind errorscmasone@google.com2010-08-101-45/+0
| | | | | | | | | BUG=51261,51263 TEST=valgrind Review URL: http://codereview.chromium.org/3005059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55617 0039d316-1c4b-4281-b951-d872f2087c98
* Suppressing bug 51707 http://crbug.com/51707lzheng@chromium.org2010-08-101-0/+10
| | | | | | Review URL: http://codereview.chromium.org/3120005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55600 0039d316-1c4b-4281-b951-d872f2087c98
* Update xp release dual core moz expectations.chase@chromium.org2010-08-101-1/+1
| | | | | | | | | | | | Recent red in vm_peak_b looks flaky to me. BUG=none TEST=xpdual moz is green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/3138003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55595 0039d316-1c4b-4281-b951-d872f2087c98
* Fix some intl* expectations to use later data.chase@chromium.org2010-08-101-6/+6
| | | | | | | | | | | | | | | Updates: - mac 10.5 intl* - mac 10.6 intl* - linux-release-hardy intl* BUG=51664 TEST=mac and linux intl* are green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/3143003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55589 0039d316-1c4b-4281-b951-d872f2087c98