summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Expose list of all running shared workers at chrome://workersyurys@chromium.org2011-07-041-0/+3
| | | | | | | | | | | This page will be used for opening DevTools window for shared workers. BUG=None TEST=None Review URL: http://codereview.chromium.org/7250004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91470 0039d316-1c4b-4281-b951-d872f2087c98
* roll clang r133931:r134361thakis@chromium.org2011-07-041-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=hans Review URL: http://codereview.chromium.org/7278023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91461 0039d316-1c4b-4281-b951-d872f2087c98
* Add more sizes checks.cmp@chromium.org2011-07-022-2/+23
| | | | | | Review URL: http://codereview.chromium.org/7304001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91404 0039d316-1c4b-4281-b951-d872f2087c98
* Remove an outdated note in TSAN Win exclusions filersleevi@chromium.org2011-07-021-9/+0
| | | | | | | | | | BUG=none TEST=net_unittests under TSAN Review URL: http://codereview.chromium.org/7302007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91402 0039d316-1c4b-4281-b951-d872f2087c98
* Add a lock around user agent calculations so the user agent can be safely ↵pkasting@chromium.org2011-07-011-12/+0
| | | | | | | | | | queried from multiple threads. This also moves the functionality into the UserAgentState class itself since that seemed a little more well-scoped. BUG=87698 TEST=none Review URL: http://codereview.chromium.org/7277067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91391 0039d316-1c4b-4281-b951-d872f2087c98
* Updating suppression after phone library roll (r91323)oshima@google.com2011-07-011-4/+6
| | | | | | | | | | TBR=georgey@chromium.org BUG=81782 TEST=none Review URL: http://codereview.chromium.org/7304007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91383 0039d316-1c4b-4281-b951-d872f2087c98
* Excluding failing test on mac valgrindoshima@google.com2011-07-011-0/+3
| | | | | | | | | | TBR=timurrrr@chromium.org, BUG=88254 TEST=none Review URL: http://codereview.chromium.org/7302013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91381 0039d316-1c4b-4281-b951-d872f2087c98
* Excluding failing tests test on mac valgrindoshima@google.com2011-07-011-0/+4
| | | | | | | | | | | | | NoStartupWindowTest.NoStartupWindowBasicTest RunInBackgroundTest.RunInBackgroundBasicTest TBR=evan@chromium.org BUG=88244 TEST=none Review URL: http://codereview.chromium.org/7282045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91374 0039d316-1c4b-4281-b951-d872f2087c98
* Excluding failing NewTabUITest.ChromeHangInNTP test on mac valgrindoshima@google.com2011-07-011-0/+3
| | | | | | | | | | TBR=mark@chromium.org BUG=88238 TEST=none Review URL: http://codereview.chromium.org/7302009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91366 0039d316-1c4b-4281-b951-d872f2087c98
* Heapchecker: Re-enable ICOImageDecoderTest and BMPImageDecoderTest.thestig@chromium.org2011-07-011-6/+0
| | | | | | | | BUG=75655 TEST=Re-enabled tests should work. Review URL: http://codereview.chromium.org/7300008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91359 0039d316-1c4b-4281-b951-d872f2087c98
* Support automatic javascript test registry in gtest when creating WebUI tests.scr@chromium.org2011-07-011-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal was to support something as simple as the following, where the tests in the javascript files would be 1st class GTESTs, supporting FLAKY_, DISABLED_, etc, and registered at linker_initialization time. WEB_UI_BROWSER_TEST_JS(WebUIBrowserTest, TestJSPass, FILE_PATH_LITERAL("sample_passing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } This solution ended up being fairly fragile, and I ended up with a script to parse javascript (with the help of v8_shell) and generate an includable ...-inl.h file with the following for every test in the .js file specified in the |rules| section of tools/js2webui.py IN_PROC_BROWSER_TEST_F(WebUIBrowserTestPass, testHelper) { AddLibrary(FilePath(FILE_PATH_LITERAL("sample_pass.js"))); ASSERT_TRUE(RunJavascriptTest("testHelper")); } http://www.chromium.org/Home/domui-testing BUG=82437 R=estade@chromium.org,jhawkins@chromium.org TEST=browser_tests --gtest_filter=WebUIBrowserTest* Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89453 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89605 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89626 Review URL: http://codereview.chromium.org/7087014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91358 0039d316-1c4b-4281-b951-d872f2087c98
* Excluding failing test SSLClientSocketTest.Connect on valgrind tsan linuxoshima@google.com2011-07-011-0/+3
| | | | | | | | | | TBR=wtc@chromium.org BUG=88228 TEST=none Review URL: http://codereview.chromium.org/7277068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91356 0039d316-1c4b-4281-b951-d872f2087c98
* Excluding failing DnsTransactionTest.FirstTimeoutTest on tsan/winoshima@google.com2011-07-011-0/+3
| | | | | | | | | | TBR=agayev@chromium.org BUG=88225 TEST=none Review URL: http://codereview.chromium.org/7277066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91352 0039d316-1c4b-4281-b951-d872f2087c98
* Disabling failing test on chromeos valgrindoshima@google.com2011-07-011-0/+3
| | | | | | | | | BUG=88221 TEST=none Review URL: http://codereview.chromium.org/7289043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91348 0039d316-1c4b-4281-b951-d872f2087c98
* Use performance_ui_tests executable instead of:darin@chromium.org2011-07-011-11/+0
| | | | | | | | | | | | | | | | | memory_test page_cycler_tests startup_tests tab_switching_test ui_tests (for dromaeo, sunspider and v8 tests) url_fetch_test This is a step toward allowing us to eliminate those separate executables. R=chase@chromium.org Review URL: http://codereview.chromium.org/7292020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91343 0039d316-1c4b-4281-b951-d872f2087c98
* Suppressiong leak in TestingProfile::CreateRequestContextoshima@google.com2011-07-011-0/+7
| | | | | | | | | | TBR=dpapad@chromium.org BUG=88212 TEST=none Review URL: http://codereview.chromium.org/7232029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91339 0039d316-1c4b-4281-b951-d872f2087c98
* Fix extraneous bracepkasting@chromium.org2011-07-011-1/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91325 0039d316-1c4b-4281-b951-d872f2087c98
* Remove old suppressions.sergeyu@chromium.org2011-07-011-65/+0
| | | | | | | | | BUG=57966 TEST=linux_valgrind trybot Review URL: http://codereview.chromium.org/7230065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91318 0039d316-1c4b-4281-b951-d872f2087c98
* Try to bandaid leaks due to TabContentsWrapper not force-closing all ↵pkasting@chromium.org2011-07-012-35/+0
| | | | | | | | | | | | InfoBarDelegates on shutdown. The real fix will come when changing to the newer ownership model, when TCW can CloseSoon() Infobars directly, but for now, manually close things in a couple places. Also makes a few other tiny changes to bring the code yet closer to my final-form checkout. BUG=87998 TEST=none Review URL: http://codereview.chromium.org/7294006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91316 0039d316-1c4b-4281-b951-d872f2087c98
* bisect-builds: It's linux64, not linux-64.thakis@chromium.org2011-07-011-2/+2
| | | | | | | | | | | | It looks like this changed accidentally in http://codereview.chromium.org/6995117 BUG=none TEST=Run `bisect-builds.py -a linux64` as suggested by the help output. Works again. Review URL: http://codereview.chromium.org/7294023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91309 0039d316-1c4b-4281-b951-d872f2087c98
* Fix obvious leak in chrome_web_ui_data_source_unittest.cc, and revert ↵tsepez@chromium.org2011-07-012-39/+0
| | | | | | | | | | associated suppresions. BUG=88094 TEST=heapchecks clean about ChromeWebUIDataSource Review URL: http://codereview.chromium.org/7278008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91303 0039d316-1c4b-4281-b951-d872f2087c98
* Second attempt to silence perms check on ffmpeg tools.ihf@chromium.org2011-07-011-1/+1
| | | | | | | | BUG=87831 TESTS=ran locally with and without Review URL: http://codereview.chromium.org/7285028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91265 0039d316-1c4b-4281-b951-d872f2087c98
* Whitelist ffmpeg tools permissions.ihf@chromium.org2011-07-011-0/+1
| | | | | | | BUG=87831 Review URL: http://codereview.chromium.org/7292027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91264 0039d316-1c4b-4281-b951-d872f2087c98
* Widen suppressionoshima@google.com2011-06-301-4/+0
| | | | | | | | | | TBR=tim@chromium.org BUG=56090 TEST=none Review URL: http://codereview.chromium.org/7292019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91227 0039d316-1c4b-4281-b951-d872f2087c98
* Removing obsolete suppressionoshima@google.com2011-06-301-6/+0
| | | | | | | | | | TBR=rsimha@chromium.org BUG=38402 TEST=none Review URL: http://codereview.chromium.org/7285020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91223 0039d316-1c4b-4281-b951-d872f2087c98
* Synchronize OwnerManagerTest and OwnershipServiceTest tests better.cmasone@chromium.org2011-06-301-25/+0
| | | | | | | | | | | | | | | | | This should address the random behavior that sometimes caused mock objects to not get freed and also caused odd double-releases of scoped_refptrs. Revert "Suppress uses-after-delete and double-deletes in chromeos::OwnerManager" This reverts commit 6dd33d51e31fce8b4ea69e0d1552e36247f1f45f. BUG=82770,87864 TEST=run unit tests under valgrind Review URL: http://codereview.chromium.org/7282014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91206 0039d316-1c4b-4281-b951-d872f2087c98
* Suppression all leak patterns in ChromeWebUIDataSource.oshima@google.com2011-06-302-1/+35
| | | | | | | | | | TBR=tsepez@chromium.org BUG=88094 TEST=none Review URL: http://codereview.chromium.org/7210035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91198 0039d316-1c4b-4281-b951-d872f2087c98
* Suppressing leak in ChromeWebUIDataSourceTest::SetUposhima@google.com2011-06-301-0/+6
| | | | | | | | | | TBR=tsepez@chromium.org BUG=88094 TEST=none Review URL: http://codereview.chromium.org/7292009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91193 0039d316-1c4b-4281-b951-d872f2087c98
* Change grit to depend on test data in the main repository.joi@chromium.org2011-06-3066-55/+6449
| | | | | | | | | | | | BUG=82636 TEST=python tools/grit/grit.py unit Initial commit r91161, turned three bots red. Reverted r91165. Investigation shows only clobber is needed. Review URL: http://codereview.chromium.org/7269003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91170 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 91161 - Change grit to depend on test data in the main repository.joi@chromium.org2011-06-3066-6449/+55
| | | | | | | | | | | | BUG=82636 TEST=python tools/grit/grit.py unit Review URL: http://codereview.chromium.org/7269003 TBR=joi@chromium.org Review URL: http://codereview.chromium.org/7285006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91165 0039d316-1c4b-4281-b951-d872f2087c98
* Change grit to depend on test data in the main repository.joi@chromium.org2011-06-3066-55/+6449
| | | | | | | | | BUG=82636 TEST=python tools/grit/grit.py unit Review URL: http://codereview.chromium.org/7269003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91161 0039d316-1c4b-4281-b951-d872f2087c98
* Widen suppression for IBusController leak.oshima@google.com2011-06-301-4/+1
| | | | | | | | | | | | updated the name of suppression for 87998 TBR=satorux@chromium.org BUG=87997,87998 TEST=chromeos memcheck bot cycle green Review URL: http://codereview.chromium.org/7290004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91148 0039d316-1c4b-4281-b951-d872f2087c98
* Excluding failing test on mac valgrind due to 'impossible happened'oshima@google.com2011-06-301-0/+3
| | | | | | | | | | TBR=thestig@chromium.org BUG=88068 TEST=none Review URL: http://codereview.chromium.org/7291005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91147 0039d316-1c4b-4281-b951-d872f2087c98
* Modify gen_keyboard_overlay_data.py to rewrite the related files.mazda@chromium.org2011-06-301-39/+88
| | | | | | | | | | BUG=none TEST=Ran the script and confirmed that it worked properly. Review URL: http://codereview.chromium.org/7282004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91138 0039d316-1c4b-4281-b951-d872f2087c98
* SpdyWebSocketStreamTest.IOPending is failing on the Dr.Memory bots.toyoshim@chromium.org2011-06-301-4/+0
| | | | | | | | | | | | | | SPDY Settings frame requires socket read completion in 100ms. But IO Pending situation did not guarantee that. We should prepare one receiving frame which doesn't affect the test. BUG=87620 TEST=tools\valgrind\chrome_tests.bat -t net_unittests --tool drmemory --build_dir net/Debug --gtest_filter=SpdyWebSocketStreamTest.IOPending Review URL: http://codereview.chromium.org/7277029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91135 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress leaks in GeolocationInfoBarQueueController::CreateInfoBarRequest ↵glider@chromium.org2011-06-301-0/+8
| | | | | | | | | | (issue 88043) BUG=88043 TBR=pkasting Review URL: http://codereview.chromium.org/7283041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91114 0039d316-1c4b-4281-b951-d872f2087c98
* Suppressing heapchecker leak in GeolocationPremissionContextTestsoshima@google.com2011-06-301-0/+27
| | | | | | | | | | TBR=pkasting@chromium.org BUG=87998 TEST=heapchecker should cycle green Review URL: http://codereview.chromium.org/7282022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91074 0039d316-1c4b-4281-b951-d872f2087c98
* Suppressing leak in ibuscontolleroshima@google.com2011-06-301-0/+15
| | | | | | | | | | TBR=satorux@chromium.org BUG=87997 TEST=chromeos valgrind bot will cycle green Review URL: http://codereview.chromium.org/7273090 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91073 0039d316-1c4b-4281-b951-d872f2087c98
* Excluding failing test on mac valgrindoshima@google.com2011-06-301-0/+2
| | | | | | | | | | TBR=jhawkins@chromium.org BUG=87992 TEST=mac valgrind (1) will cycle green Review URL: http://codereview.chromium.org/7283031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91066 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the dependency on app_base from some targets.tfarina@chromium.org2011-06-291-1/+1
| | | | | | | | | | | BUG=72317 TEST=None R=rsesek@chromium.org Review URL: http://codereview.chromium.org/7283024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91045 0039d316-1c4b-4281-b951-d872f2087c98
* Move app/resources/* to ui/resources/ directory.tfarina@chromium.org2011-06-291-1/+1
| | | | | | | | | | | BUG=72317 TEST=None R=rsesek@chromium.org Review URL: http://codereview.chromium.org/7253057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91010 0039d316-1c4b-4281-b951-d872f2087c98
* Views views_unittests native widget tests leakdhollowa@chromium.org2011-06-291-0/+4
| | | | | | | | | | | Eliminates leaks from NativeWidgetTest.*. Adds additional test target to valgrind wrapper script. Refactors native_widget_test_utils_{gtk|win}.cc to avoid duplication. BUG=87805 TEST=tools/valgrind/chrome_tests.sh views --gtest_filter=NativeWidgetTest.* Review URL: http://codereview.chromium.org/7272044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90979 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude one failing unit_test from Dr. Memory runs; update net_unittests ↵timurrrr@chromium.org2011-06-292-1/+5
| | | | | | | | | suppressions TBR=bruening Review URL: http://codereview.chromium.org/7248027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90945 0039d316-1c4b-4281-b951-d872f2087c98
* s/CRYPT32/CRYPT*/ to suppress the same set of uninits on XP and W7timurrrr@chromium.org2011-06-291-15/+10
| | | | | | | | | Also narrow down (and widen at the same time, arghh) the i#257 suppression TBR=bruening BUG=http://code.google.com/p/drmemory/issues/detail?id=257,412,479 Review URL: http://codereview.chromium.org/7281005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90937 0039d316-1c4b-4281-b951-d872f2087c98
* Wholesale move of debugger sources to content.joi@chromium.org2011-06-291-1/+1
| | | | | | | | | | | | | | | | | Other references are modified only to point to the new location. Follow-up changes will move build rules for the debugger into content. This adds a somewhat permissive DEPS file to content/browser/debugger. Follow-up work will whittle that down to zero dependencies on chrome/. BUG=84078 TEST=existing Review URL: http://codereview.chromium.org/7274031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90912 0039d316-1c4b-4281-b951-d872f2087c98
* Fix memory leak introduced by unit test, unflake timing-dependent test.joi@chromium.org2011-06-292-10/+1
| | | | | | | | | | | Remove exclusions for TSAN and Dr. Memory. BUG=87616,86756 TEST=net_unittests Review URL: http://codereview.chromium.org/7277011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90908 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude LinkInfoBarControllerTest.ShowAndClickLink on Mac valgrind.cbentzel@chromium.org2011-06-291-0/+3
| | | | | | | | | | BUG=87839 TBR=rsesek@chromium.org TEST=None Review URL: http://codereview.chromium.org/7275033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90887 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude BalloonControllerTest::SizesTest from mac builds.cbentzel@chromium.org2011-06-281-0/+1
| | | | | | | | | | TBR=johnnyg@chromium.org BUG=87769 TEST=None Review URL: http://codereview.chromium.org/7277053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90842 0039d316-1c4b-4281-b951-d872f2087c98
* Cond and Value4 suppression for WebDataServer::InitializeDatabaseIfNecessarycbentzel@chromium.org2011-06-281-0/+14
| | | | | | | | | | BUG=50968 TBR=michaeln TEST=None Review URL: http://codereview.chromium.org/7275025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90823 0039d316-1c4b-4281-b951-d872f2087c98
* Add another suppression for WebDataService::InitializeDatabaseIfNecessarycbentzel@chromium.org2011-06-281-1/+7
| | | | | | | | | | BUG=50968 TBR=dhollowa@chromium.org TEST=None Review URL: http://codereview.chromium.org/7277048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90817 0039d316-1c4b-4281-b951-d872f2087c98