summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* rolling back clang changes per nico for bug 153640karen@chromium.org2012-10-101-1/+1
| | | | | | Review URL: https://codereview.chromium.org/11093056 git-svn-id: svn://svn.chromium.org/chrome/branches/1271/src@161194 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 158084 - F4 behavior was change to maximize (from fullscreen). The ↵saintlou@chromium.org2012-09-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | label text needs to be changed, too. Note from mazda@ keyboard_overlay_data.js is generated by tools/gen_keyboard_overaly_data/gen_keyboard_overlay_data.py Necessary changes are: 1. Replace 'full screen' with 'maximize' in gen_keyboard_overlay_data.py 2. Replace 'full screen' with 'maximize' in keyboard_overlay.js 3. Regenerate keyboard_overlay_data.js by running gen_keyboard_overlay_data.py However, currently step 3 does not work properly because of some manual changes of data. In this case, I think it's OK just to replace all 'full screen' with 'maximize' in keyboard_overlay_data.js. The key descriptions on the top row of keyboard overlay are currently not translated (might be better to translate though). See also crbug.com/145402. BUG=150785 TEST=Bring up keyboard overlay and observer label for "F4" Review URL: https://chromiumcodereview.appspot.com/10946043 TBR=sschmitz@chromium.org Review URL: https://codereview.chromium.org/10983012 git-svn-id: svn://svn.chromium.org/chrome/branches/1271/src@158434 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress uninitialized error in DownloadCreateInfooshima@chromium.org2012-09-192-1/+16
| | | | | | | | | | TBR=asanka@chromium.org BUG=150705 TEST=none Review URL: https://codereview.chromium.org/10950019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157464 0039d316-1c4b-4281-b951-d872f2087c98
* Update Windows moz page cycler IO bytes/ops expectations.tonyg@chromium.org2012-09-191-4/+4
| | | | | | | | | | | | | | xp-release-dual-core/moz/total_byte_b/IO_b: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=157406&graph=total_byte_b xp-release-dual-core/moz/total_byte_r/IO_r: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=157406&graph=total_byte_r xp-release-dual-core/moz/total_op_b/IO_op_b: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=157406&graph=total_op_b xp-release-dual-core/moz/total_op_r/IO_op_r: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=157406&graph=total_op_r BUG=150662 TBR=simonjam@chromium.org Review URL: https://codereview.chromium.org/10944023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157463 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress leak in webkit_glue::CppBoundClass::BindToJavascript / ↵oshima@chromium.org2012-09-181-88/+14
| | | | | | | | | | | | | | | | WebCore::V8DOMWindowShel Remove obsolete suppression for 46571 NOTRY=true TBR=tonyg@chromium.org, tony@chromium.org BUG=150648,46571 TEST=none Review URL: https://chromiumcodereview.appspot.com/10943016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157414 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup error messages in run_test_from_archive.pycsharp@chromium.org2012-09-181-2/+2
| | | | | | | | | | | NOTRY=True R=maruel@chromium.org BUG= Review URL: https://chromiumcodereview.appspot.com/10943013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157409 0039d316-1c4b-4281-b951-d872f2087c98
* Allow the isolate hashtable to be stored on a server.csharp@chromium.org2012-09-181-42/+124
| | | | | | | | | | NOTRY=True BUG= Review URL: https://chromiumcodereview.appspot.com/10915319 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157379 0039d316-1c4b-4281-b951-d872f2087c98
* Redirect addr2line error output to /dev/null.scherkus@chromium.org2012-09-181-1/+2
| | | | | | | | The clang update in r155953 introduced DWARF4 which caused older versions of addr2line to spew error messages, effectively breaking asan_symbolize.py. Review URL: https://codereview.chromium.org/10943011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157369 0039d316-1c4b-4281-b951-d872f2087c98
* Also install clang if GYP_DEFINES includes clang=1jochen@chromium.org2012-09-181-1/+1
| | | | | | | | | BUG=none TEST=delete third_party/llvm-build and run gclient runhooks. should download clang Review URL: https://codereview.chromium.org/10939014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157338 0039d316-1c4b-4281-b951-d872f2087c98
* roll clang 163126:163674, roll gyp 1492:1495thakis@chromium.org2012-09-181-1/+2
| | | | | | | | | | | | | | | | | | | gyp changes: 1493: Fix ninja generator to recognize the 'default_target' flag. 1494, 1495: ninja: Survive case-only file renames on case-insensitive filesystems. 1494 requires a one-time clobber-build on OS X. Conveniently, clang rolls cause clobber builds, so roll gyp at the same time as clang. (Change the clobber logic to delete .d files too for this roll. I'll undo this at the next roll.) BUG=none TBR=hans Review URL: https://codereview.chromium.org/10939009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157318 0039d316-1c4b-4281-b951-d872f2087c98
* Don't crash on corrupted archive and allow user to continue bisect with ↵vitalybuka@chromium.org2012-09-171-29/+31
| | | | | | | | | | | | different builds. BUG=NONE NOTRY=true Review URL: https://chromiumcodereview.appspot.com/10917277 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157192 0039d316-1c4b-4281-b951-d872f2087c98
* Sharding supervisor changeshinoka@chromium.org2012-09-173-27/+92
| | | | | | | | | | | | * Fixed tests in windows * Split up stdout and stderr so they print separately Its not clear whether or not this'll fix http://code.google.com/p/chromium/issues/detail?id=145308&can=3&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary But the goal is to quarantine stderr from mixing in with the stdout pipe, so this code uses two extra threads per shard to collect stdout and stderr byte by byte, and emit them line by line. Review URL: https://chromiumcodereview.appspot.com/10919228 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157184 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the unit test to run in a clean profile dir and add a new test to check ↵pastarmovj@chromium.org2012-09-171-3/+0
| | | | | | | | | | | | | | | | | | proper migration. The test was not producing correct results on one of the bots because the pref checked has a special migration path that might populate it even if not set in the policy file. To avoid this we run all tests from this group in a clean profile directory and also to make sure migration works as expected I added a new test to the suit too. BUG=148356 TEST=unit_tests: DeviceSettingsProviderTest.SetPrefFailed should pass on all bots. Review URL: https://chromiumcodereview.appspot.com/10916288 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157107 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Speculatively disable NativeMessagingTest on memory.fyi bots.thestig@chromium.org2012-09-171-0/+2
| | | | | | | | BUG=149882 TBR=oshima Review URL: https://codereview.chromium.org/10928226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157069 0039d316-1c4b-4281-b951-d872f2087c98
* Use OwnArrayPtr<> for new[]-allocated memory to match the delete[] calljamesr@chromium.org2012-09-151-8/+0
| | | | | | | | | BUG=149736 Review URL: https://chromiumcodereview.appspot.com/10928210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156981 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind/Heapchcker: Disable AppNotificationManagerSyncTest as wellthestig@chromium.org2012-09-142-0/+2
| | | | | | | | TBR=oshima BUG=149712 Review URL: https://codereview.chromium.org/10911322 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156911 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Suppress a bunch of WK errors.thestig@chromium.org2012-09-141-0/+59
| | | | | | | | TBR=timurrrrr BUG=139664,149741,149748 Review URL: https://codereview.chromium.org/10933106 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156903 0039d316-1c4b-4281-b951-d872f2087c98
* chrome_remote_control: Initial CrOS supportnduca@chromium.org2012-09-1414-80/+801
| | | | | | | | BUG=144483 Review URL: https://codereview.chromium.org/10914226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156899 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Suppress a couple of errors in webkit layout tests.thestig@chromium.org2012-09-141-0/+31
| | | | | | | | BUG=149734,149736 TBR=jamesr Review URL: https://codereview.chromium.org/10916324 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156888 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Disable AppNotificationManagerTest and ExtensionWebRequestTest to ↵thestig@chromium.org2012-09-142-0/+10
| | | | | | | | | | see if that stops the unit_tests hangs. TBR=oshima BUG=149712,149715 Review URL: https://codereview.chromium.org/10905294 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156862 0039d316-1c4b-4281-b951-d872f2087c98
* A speculative fix for TSAN and HeapCheck failures in InMemoryURLIndexCacheTest.erikwright@chromium.org2012-09-142-24/+0
| | | | | | | | | | | | | | | | | These failures may be due to poor assumptions that were previously validated as a side-effect of code that I removed. Basically, the test is reaching into the history service and grabbing its DB, then accessing it off of the service's thread. This is fundamentally wrong but would still work if you wait until the history service is completely idle. Previously BlockUntilBookmarkModelLoaded might have had this side-effect. I was unable to repro the failure locally with TSan, so removing the suppressions and observing to see if the problem recurs. R=timurrrr@chromium.org,sky@chromium.org BUG=146322,146265 TEST=observe TSan/Heapcheck bots. Review URL: https://chromiumcodereview.appspot.com/10914125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156840 0039d316-1c4b-4281-b951-d872f2087c98
* tools/chrome_remote_control and tools/gpu style fixes.dtu@chromium.org2012-09-1453-501/+415
| | | | | | | | | | BUG=none TEST=Do ./run_tests in each of the two directories. TBR=nduca@chromium.org Review URL: https://chromiumcodereview.appspot.com/10916306 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156749 0039d316-1c4b-4281-b951-d872f2087c98
* Move wallpapers to ash/resourceoshima@chromium.org2012-09-141-5/+5
| | | | | | | | | | TBR=sky@chromium.org BUG=141663 TEST=none Review URL: https://codereview.chromium.org/10910264 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156728 0039d316-1c4b-4281-b951-d872f2087c98
* (reland r156610)oshima@chromium.org2012-09-131-0/+3
| | | | | | | | | | | | | add ash_resources.grd and necessary changes to use images in ash/resources BUG=146034 TEST=none Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=156610 Review URL: https://codereview.chromium.org/10905242 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156637 0039d316-1c4b-4281-b951-d872f2087c98
* [remoting_unittests] Moving the variable used to mock ↵alexeypa@chromium.org2012-09-131-10/+0
| | | | | | | | | | | | | | | VideoFrameCapturer::size_most_recent() to the test class scope so it is availabe in TearDown() while running the outstanding tasks. This CL also: - removes the corresponding memcheck supression; - DCHECKs that the host has been properly deleted by ChromotingHostTest.* tests before reaching TearDown(). This should help to avoid memory leaks similar to ones that were fixed by r156494. BUG=148828,148883 TEST=remoting_unittests Review URL: https://codereview.chromium.org/10915264 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156619 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r156610 "add ash_resources.grd and necessary changes to use images in ↵oshima@chromium.org2012-09-131-3/+0
| | | | | | | | | | ash/resources" TBR=oshima@chromium.org BUG=146034 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156614 0039d316-1c4b-4281-b951-d872f2087c98
* add ash_resources.grd and necessary changes to use images in ash/resourcesoshima@chromium.org2012-09-131-0/+3
| | | | | | | | | BUG=146034 TEST=none Review URL: https://codereview.chromium.org/10905242 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156610 0039d316-1c4b-4281-b951-d872f2087c98
* initialize un-inited valuesestade@chromium.org2012-09-131-17/+0
| | | | | | | | | BUG=74383 Review URL: https://chromiumcodereview.appspot.com/10914227 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156565 0039d316-1c4b-4281-b951-d872f2087c98
* Remove 84 lines of redundant option parsing code.maruel@chromium.org2012-09-135-152/+68
| | | | | | | | | | R=csharp@chromium.org BUG= Review URL: https://chromiumcodereview.appspot.com/10907209 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156553 0039d316-1c4b-4281-b951-d872f2087c98
* Adjust tsan suppressions for media::Pipeline due to r156011.scherkus@chromium.org2012-09-131-8/+0
| | | | | | | | | BUG=137973 TBR=timurrrr Review URL: https://codereview.chromium.org/10907213 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156540 0039d316-1c4b-4281-b951-d872f2087c98
* Add HostController and main file for host forwarder.felipeg@chromium.org2012-09-135-6/+299
| | | | | | | | | | | The big picture CL can be seem here: https://chromiumcodereview.appspot.com/10918057/ BUG=146502 Review URL: https://chromiumcodereview.appspot.com/10908215 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156537 0039d316-1c4b-4281-b951-d872f2087c98
* Disable more failing DrMemory tests.thestig@chromium.org2012-09-131-0/+1
| | | | | | | | BUG=148644 TBR=rnk Review URL: https://codereview.chromium.org/10913245 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156495 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Suppress an error in remoting.thestig@chromium.org2012-09-131-0/+10
| | | | | | | | BUG=148883 TBR=alexeypa Review URL: https://codereview.chromium.org/10928176 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156494 0039d316-1c4b-4281-b951-d872f2087c98
* CrOS: Convert MediaTransferProtocolDaemonClient to use protobufs.thestig@chromium.org2012-09-131-0/+61
| | | | | | | | BUG=chromium-os:29557 Review URL: https://chromiumcodereview.appspot.com/10913048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156468 0039d316-1c4b-4281-b951-d872f2087c98
* Android: Avoid pushing svn directories to the device.nileshagrawal@chromium.org2012-09-131-3/+7
| | | | | | | | | | | BUG=143114 Looks like this was a regression after: https://chromiumcodereview.appspot.com/10867008/ Review URL: https://chromiumcodereview.appspot.com/10911259 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156462 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Suppress a leak in WebRTCAudioDeviceTest.thestig@chromium.org2012-09-132-0/+10
| | | | | | | | | | DrMemory: Disable more failing profile tests - ProfileManagerTest.*. TBR=rnk BUG=148644,148865 Review URL: https://codereview.chromium.org/10914245 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156445 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the error when compiling tools/android with clangmichaelbai@chromium.org2012-09-121-0/+2
| | | | | | | | | | This error was introduced by https://chromiumcodereview.appspot.com/10919213 from upstream, it will break the downstream clang build in the merge BUG=143931 Review URL: https://chromiumcodereview.appspot.com/10915241 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156419 0039d316-1c4b-4281-b951-d872f2087c98
* Remove VP8 suppressions for memcheck.wez@chromium.org2012-09-121-43/+0
| | | | | | | | | | | VP8 no longer gives these memory access errors under ASAN. BUG=115251 Review URL: https://chromiumcodereview.appspot.com/10913228 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156408 0039d316-1c4b-4281-b951-d872f2087c98
* [check_perms] chmod +x some files to fix build.dbeam@chromium.org2012-09-123-0/+0
| | | | | | | | | | R=tbreisacher@chromium.org BUG=none TEST=check_perms is green Review URL: https://chromiumcodereview.appspot.com/10908222 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156350 0039d316-1c4b-4281-b951-d872f2087c98
* Implemented print-to-skpicture using chrome-remote-control.alokp@chromium.org2012-09-124-0/+97
| | | | | | Review URL: https://chromiumcodereview.appspot.com/10915017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156340 0039d316-1c4b-4281-b951-d872f2087c98
* Disable GAIAInfoUpdateServiceTest on the "Windows Tests (DrMemory)" bot.thestig@chromium.org2012-09-121-1/+1
| | | | | | | | TBR=rnk BUG=148644 Review URL: https://codereview.chromium.org/10909195 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156337 0039d316-1c4b-4281-b951-d872f2087c98
* Add DeviceController and device_forwarder_main to Forwarder2.felipeg@chromium.org2012-09-124-2/+224
| | | | | | | | | | | The big picture CL can be seem here: https://chromiumcodereview.appspot.com/10918057/ BUG=146502 Review URL: https://chromiumcodereview.appspot.com/10919213 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156311 0039d316-1c4b-4281-b951-d872f2087c98
* Add 'OS' value in the .results manifest.maruel@chromium.org2012-09-125-16/+63
| | | | | | | | | | | | | | | | This permits the .results executor to know which OS needs to be used to run the test. This will be eventually useful for automatic task distribution to have the option to say: swarm_trigger --hash <sha-1> and have swarm figure out the OS of the slaves to use right away. R=csharp@chromium.org NOTRY=true BUG= Review URL: https://chromiumcodereview.appspot.com/10919224 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156293 0039d316-1c4b-4281-b951-d872f2087c98
* Add missing initializers to TestLayerAnimationDelegatevollick@google.com2012-09-121-7/+0
| | | | | | | | | | | There were missing initializers for brightness_ and grayscale_ making valgrind unhappy. BUG=148475 TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10913208 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156289 0039d316-1c4b-4281-b951-d872f2087c98
* Disable GAIAInfoUpdateServiceTest.DownloadSuccess on the "Windows Tests ↵hbono@chromium.org2012-09-121-0/+3
| | | | | | | | | | | | | (DrMemory)" bot. This change disables GAIAInfoUpdateServiceTest.DownloadSuccess, which has been failing since Build 5735. TBR=thestig BUG=148644 TEST=make the "Windows Tests (DrMemory) bot" green. Review URL: https://chromiumcodereview.appspot.com/10917204 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156249 0039d316-1c4b-4281-b951-d872f2087c98
* Updates suppressions in WebKit and adds suppressions for SkPathRef.hbono@chromium.org2012-09-121-9/+36
| | | | | | | | | | | This change updates some suppressions including WebCore::toWebCoreString and v8::internal::RegExpImpl. It also adds a couple of suppressions for occasional use-after-free errors in the SkPathRef class and a suppression for a leak in the MockInterstitialPageDelegate class. TBR=thestig BUG=101145,108622,138522,139996,148637,148640 TEST=make the "Linux Tests (valgrind)(5)" bot, the "Chromium OS (valgrind)(5)" bot, and the "WebKit Linux (valgrind layout)" bot greener. Review URL: https://chromiumcodereview.appspot.com/10907193 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156248 0039d316-1c4b-4281-b951-d872f2087c98
* Removes unnecessary suppressions.hbono@chromium.org2012-09-122-11/+0
| | | | | | | | | | | This change removes suppressions for Bug 148589 since it has been fixed by r156179 <http://crrev.com/156179>. TBR=thestig BUG=148589 TEST=make the "Chromium OS (valgrind)(3)" bot and the "Chromium OS Heapheck" bot green without suppressions. Review URL: https://chromiumcodereview.appspot.com/10915222 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156231 0039d316-1c4b-4281-b951-d872f2087c98
* Fix leaks by providing a target destruction notification to the ↵ben@chromium.org2012-09-122-38/+0
| | | | | | | | | | EventHandler, which gives it the opportunity to clean itself up. http://crbug.com/147756 R=sadrul@chromium.org Review URL: https://chromiumcodereview.appspot.com/10916230 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156227 0039d316-1c4b-4281-b951-d872f2087c98
* Update a suppression rule and add suppression rules.hbono@chromium.org2012-09-123-1/+12
| | | | | | | | | | | This change widens the suppression rule for Bug 112078 <http://crbug.com/112078> to catch up with r156090 <http://crrev.com/156090> and adds new suppressions for Bug 148589 <http://crbug.com/148589>. TBR=thestig BUG=112078,148589 TEST=make the "Chromium Mac (valgrind)(2)" bot, the "Chromium OS (valgrind)(3)" bot, and the "CHromium OS Heapcheck" bot green. Review URL: https://chromiumcodereview.appspot.com/10911235 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156192 0039d316-1c4b-4281-b951-d872f2087c98
* Add chromeos_unittests to valgrind/heapcheker start scriptoshima@chromium.org2012-09-112-0/+8
| | | | | | | | | BUG=147658 TEST=chromeos_unittests passed all of asan/heapchecker/valgrind tests Review URL: https://chromiumcodereview.appspot.com/10914211 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156133 0039d316-1c4b-4281-b951-d872f2087c98