summaryrefslogtreecommitdiffstats
path: root/webkit
Commit message (Collapse)AuthorAgeFilesLines
* My previous change made it necessary to use the command line option ↵sehr@google.com2009-12-151-0/+1
| | | | | | | | | | --internal-pepper to run the plugin, but didn't update the gyp file to reflect this. Review URL: http://codereview.chromium.org/500031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34625 0039d316-1c4b-4281-b951-d872f2087c98
* By popular (?) demand, add some more options for different styles of output.dpranke@google.com2009-12-152-54/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This concludes my screwing around with the output format of this script. If you specify "--log failures", then we will print out the unexpected failures as they happen. If you specify "--log webkit-style-progress", then we attempt to emulate the way WebKit runs their regression (by running all tests in lexicographic order). This can produce slightly weird results when we get head-of-line blocked on one test (while other threads run ahead). To ameliorate this, if you specify "--log webkit-style-progress,remaining" you will also get a count of the number of remaining tests. Also, "--log webkit-style-progress" will also enable "--log failures". If you don't specify "--log failures" or "--log webkit-style-progress", then the one-line progress meter will split out unexpected failures from unexpected passes. Also, rewrite the metering to handle lines that wrap properly. BUG=none R=ojan@chromium.org,eseidel@chromium.org,dave_levin@chromium.org TEST=none Review URL: http://codereview.chromium.org/495006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34610 0039d316-1c4b-4281-b951-d872f2087c98
* Update incorrect expectations using the dashboard atojan@chromium.org2009-12-151-2/+0
| | | | | | | | | | | | | | | | | | http://src.chromium.org/viewvc/chrome/trunk/src/webkit/tools/layout_tests/flakiness_dashboard.html#expectationsUpdate=true Did all the tests from LayoutTests/accessibility to LayoutTests/editing (inclusive). The problem is that the script currently only modifies existing individual test lines in test_expectations.txt. It won't add new tests. This includes the case of all the accessibility tests, which have their expectations listed by directory. Hopefully, this is not true for all the other tests and this tool is still useful for now. Otherwise, we'll need to figure out the adding new tests case as well. The only hard part with adding new tests is figuring out what to do with the BUG identifiers. Review URL: http://codereview.chromium.org/506017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34606 0039d316-1c4b-4281-b951-d872f2087c98
* Fix bug 30408, 30380dpranke@google.com2009-12-152-4/+4
| | | | | | | | | | | | | | | | | | 30408 - parsing of timing information for slow and/or timedout tests was broken. 30380 - parsing of the # skipped in test results broke on the buildbot. I've changed the text here slightly but this also requires a separate change on the buildbot master. R=ojan@chromium.org TEST=none BUG=30408 BUG=30380 Review URL: http://codereview.chromium.org/503010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34603 0039d316-1c4b-4281-b951-d872f2087c98
* Fix hang when a plugin has child windows that are in a different process. ↵jam@chromium.org2009-12-151-43/+56
| | | | | | | | | RedrawWindow would synchronously wait for the child window, during which only some messages are pumped. This leads to reentrancy with our custom paint message. Avoiding synchronously calling the child windows in the reentrancy fixes the problem. BUG=2242480 Review URL: http://codereview.chromium.org/501014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34593 0039d316-1c4b-4281-b951-d872f2087c98
* New Mac baselines for some SVG filters tests, and fix test_expectations for ↵senorblanco@chromium.org2009-12-1524-78/+1393
| | | | | | | | | | | passing tests (mostly Mac). BUG=23469,23488,23489,29737,23465,10760,24206,28380 TEST=greenness Review URL: http://codereview.chromium.org/506015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34591 0039d316-1c4b-4281-b951-d872f2087c98
* SKIP DEFER the LayoutTests/fast/loader/stateobjects tests. Theyojan@chromium.org2009-12-151-12/+2
| | | | | | | all time out and add ~1 minute to cycle time. Review URL: http://codereview.chromium.org/500029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34590 0039d316-1c4b-4281-b951-d872f2087c98
* Make expectationsUpdate mode of the flakiness dashboard go through tests in ↵jparent@chromium.org2009-12-151-1/+3
| | | | | | | | | | | | | alphabetical order. This makes it more efficient to process groups of tests and allows you to easy skip over groups of tests (say, http tests). TEST=manual BUG=none Review URL: http://codereview.chromium.org/501009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34589 0039d316-1c4b-4281-b951-d872f2087c98
* Add another flaky crash, pending investigation.dglazkov@chromium.org2009-12-151-0/+4
| | | | | | | | | | TBR=tony TEST=none BUG=none Review URL: http://codereview.chromium.org/503019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34584 0039d316-1c4b-4281-b951-d872f2087c98
* Enable Mac plugin test_shell testsstuartmorgan@chromium.org2009-12-153-5/+3
| | | | | | | | | BUG=none TEST=test_shell tests should include PluginTest.* on the Mac Review URL: http://codereview.chromium.org/500011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34582 0039d316-1c4b-4281-b951-d872f2087c98
* Add one more test that got flaky after sharding the http tests.ojan@chromium.org2009-12-151-4/+4
| | | | | | | | And mark the flaky tests from moving to apache and sharding the http tests as part of the umbrella 9798 bug. Review URL: http://codereview.chromium.org/501023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34579 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: fix sanity tests insanity.pfeldman@chromium.org2009-12-151-4/+4
| | | | | | | TBR=dglazkov git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34572 0039d316-1c4b-4281-b951-d872f2087c98
* Shard the loader directory. Should eek out ~20-40 more seconds on ojan@chromium.org2009-12-151-2/+3
| | | | | | | a couple builders. Review URL: http://codereview.chromium.org/506004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34570 0039d316-1c4b-4281-b951-d872f2087c98
* Updates the layout test formatter to match the current output from the ↵gwilson@google.com2009-12-151-2/+7
| | | | | | | | | | | | | | layout test scripts, whose output recently changed. Also fixes some failure double-counting. R=ojan BUG=none TEST=test_output_formatter.bat should pick up failures properly, and not have duplicates. Review URL: http://codereview.chromium.org/496012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34562 0039d316-1c4b-4281-b951-d872f2087c98
* Implement overridden InjectedScript.evaluateOnSelf() from upstreamapavlov@chromium.org2009-12-153-0/+32
| | | | | | Review URL: http://codereview.chromium.org/491078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34559 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: uncomment more inspector layout tests.pfeldman@chromium.org2009-12-151-5/+0
| | | | | | | TBR=loislo git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34553 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: repair DevToolsExtensionDebugTest.TestContentScriptIsPresentyurys@chromium.org2009-12-151-0/+11
| | | | | | Review URL: http://codereview.chromium.org/500020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34545 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Add support for inspector layout tests. Step 3.pfeldman@chromium.org2009-12-1516-9/+512
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34544 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Restore sanity tests tests.pfeldman@chromium.org2009-12-151-8/+9
| | | | | | | | BUG=30418 Review URL: http://codereview.chromium.org/505005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34543 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: provide async parameter for dispatchOnInjectedScriptyurys@chromium.org2009-12-155-25/+11
| | | | | | Review URL: http://codereview.chromium.org/492032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34541 0039d316-1c4b-4281-b951-d872f2087c98
* Some test_expectations cleanup for Linux: tests now passing due to SVG ↵senorblanco@chromium.org2009-12-151-30/+11
| | | | | | | | | | | filters, the switch from lighttpd -> Apache, and a recent WebKit roll. BUG=8941,10323,10361,28417,29737,29748 TEST=be green Review URL: http://codereview.chromium.org/504006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34526 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Disable PluginTest.Refresh because it's crashing on the bots for"tony@chromium.org2009-12-151-2/+0
| | | | | | | | | | | | This reverts commit r34517. The next test failed, so reverting the disable. TBR=dglazkov Review URL: http://codereview.chromium.org/501012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34518 0039d316-1c4b-4281-b951-d872f2087c98
* Disable PluginTest.Refresh because it's crashing on the bots fortony@chromium.org2009-12-151-0/+2
| | | | | | | | | | | unknown reasons. I can't repro the crash on the desktop. BUG=30346 TBR=senorblanco Review URL: http://codereview.chromium.org/503006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34517 0039d316-1c4b-4281-b951-d872f2087c98
* Add another phantom Linux crash.dglazkov@chromium.org2009-12-141-0/+3
| | | | | | | | | | TBR=tc TEST=none BUG=none Review URL: http://codereview.chromium.org/505003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34514 0039d316-1c4b-4281-b951-d872f2087c98
* One more new baseline. For real this time.senorblanco@chromium.org2009-12-142-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=dglazkov Review URL: http://codereview.chromium.org/503004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34511 0039d316-1c4b-4281-b951-d872f2087c98
* Linux baselines for SVG filters. Also fix WinXP/Vista baselines for two tests.senorblanco@chromium.org2009-12-1475-119/+202
| | | | | | | | | | BUG=29737 TEST=green is my valley TBR=dglazkov Review URL: http://codereview.chromium.org/504004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34507 0039d316-1c4b-4281-b951-d872f2087c98
* New Win baselines for SVG filters tests.senorblanco@chromium.org2009-12-14135-89/+582
| | | | | | | | | BUG=29737 TEST=still green? Review URL: http://codereview.chromium.org/497011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34503 0039d316-1c4b-4281-b951-d872f2087c98
* Update test expectations after sharding the http tests.ojan@chromium.org2009-12-141-3/+4
| | | | | | | TBR Review URL: http://codereview.chromium.org/507001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34501 0039d316-1c4b-4281-b951-d872f2087c98
* Fix some bugs in resolving expectations for tests.ojan@chromium.org2009-12-142-53/+60
| | | | | | Review URL: http://codereview.chromium.org/486046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34480 0039d316-1c4b-4281-b951-d872f2087c98
* Shard the http tests on linux as well. They seem to be justojan@chromium.org2009-12-142-4/+9
| | | | | | | | | | as stable as on the mac now. Sharding the http tests on the mac did *not* increase flakiness at all. Also, update comment for a test in test_expectations. Review URL: http://codereview.chromium.org/494010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34479 0039d316-1c4b-4281-b951-d872f2087c98
* Add another database flaky crash.dglazkov@chromium.org2009-12-141-1/+2
| | | | | | | | | | TBR=dumi TEST=none BUG=30081 Review URL: http://codereview.chromium.org/496014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34477 0039d316-1c4b-4281-b951-d872f2087c98
* Yet one more layout failure.senorblanco@chromium.org2009-12-141-1/+1
| | | | | | | | | BUG=none TEST=green please? TBR=dglazkov git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34473 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit Roll 52032:52096dglazkov@chromium.org2009-12-141-0/+3
| | | | | | | | | | R=jparent TEST=none BUG=none Review URL: http://codereview.chromium.org/491085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34472 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 34461 - Fix Win WebKit: clean up some incorrect test_expectations.senorblanco@chromium.org2009-12-141-7/+7
| | | | | | | | | | | BUG=none TEST=none TBR=dglazkov Review URL: http://codereview.chromium.org/491086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34468 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: remove obsolete methodsyurys@chromium.org2009-12-144-33/+0
| | | | | | Review URL: http://codereview.chromium.org/491084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34465 0039d316-1c4b-4281-b951-d872f2087c98
* Adjust test expectations according to actual results.dglazkov@chromium.org2009-12-141-2/+2
| | | | | | | | | | TBR=ajwong TEST=none BUG=none Review URL: http://codereview.chromium.org/496011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34462 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Win WebKit: clean up some incorrect test_expectations.senorblanco@chromium.org2009-12-141-7/+7
| | | | | | | | | BUG=none TEST=none TBR=dglazkov git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34461 0039d316-1c4b-4281-b951-d872f2087c98
* Enable SVG filters in Chrome. This will cause a number of tests to need ↵senorblanco@chromium.org2009-12-141-41/+110
| | | | | | | | | | | | | rebaselines. BUG=29737 TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=34446 Review URL: http://codereview.chromium.org/491070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34460 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: restore context menu after the API change.pfeldman@chromium.org2009-12-142-29/+44
| | | | | | Review URL: http://codereview.chromium.org/499002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34458 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the 'score.txt' file that run_webkit_tests writes to the results dir.dpranke@google.com2009-12-131-6/+0
| | | | | | | | | | | | As far as we can tell, this isn't used by anything. BUG=none TEST=none R=erikkay@chromium.org Review URL: http://codereview.chromium.org/495007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34454 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 34446, since it broke ChromiumOS.senorblanco@chromium.org2009-12-131-110/+41
| | | | | | | | | | | | BUG=29737 TEST=none Review URL: http://codereview.chromium.org/491070 TBR=senorblanco@chromium.org Review URL: http://codereview.chromium.org/495015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34447 0039d316-1c4b-4281-b951-d872f2087c98
* Enable SVG filters in Chrome. This will cause a number of tests to need ↵senorblanco@chromium.org2009-12-131-41/+110
| | | | | | | | | | | rebaselines. BUG=29737 TEST=none Review URL: http://codereview.chromium.org/491070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34446 0039d316-1c4b-4281-b951-d872f2087c98
* Include windows in some test flake failures.eroman@chromium.org2009-12-121-2/+3
| | | | | | | | BUG=30185 TBR=dglazkov git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34424 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit update 51976:51984.eroman@chromium.org2009-12-121-0/+6
| | | | | | | | TBR=dglazkov. Review URL: http://codereview.chromium.org/491054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34421 0039d316-1c4b-4281-b951-d872f2087c98
* Add hindi-whitespace to flaky list.eroman@chromium.org2009-12-121-0/+2
| | | | | | | | | BUG=30180 TBR=wtc Review URL: http://codereview.chromium.org/494005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34398 0039d316-1c4b-4281-b951-d872f2087c98
* Added CommandBufferProxy, CommandBufferStub. Replaced NPAPI with IPC for ↵apatrick@google.com2009-12-121-1/+7
| | | | | | | | | | | synchronous messages. WebPluginDelegateImpl can instantiate a command buffer. Removed remaining dependencies on NPAPI. TEST=none BUG=none Review URL: http://codereview.chromium.org/465040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34397 0039d316-1c4b-4281-b951-d872f2087c98
* Add a bit of error handling to web server shutdown.mmoss@google.com2009-12-122-3/+14
| | | | | | Review URL: http://codereview.chromium.org/494004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34393 0039d316-1c4b-4281-b951-d872f2087c98
* Add a flaky layout test.eroman@chromium.org2009-12-111-0/+4
| | | | | | | | | BUG=30082 TBR=dglazkov Review URL: http://codereview.chromium.org/486041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34390 0039d316-1c4b-4281-b951-d872f2087c98
* Add flaky layout crash to failures list.eroman@chromium.org2009-12-111-0/+3
| | | | | | | | | BUG=30174 TBR=dglazkov Review URL: http://codereview.chromium.org/486040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34389 0039d316-1c4b-4281-b951-d872f2087c98
* Add some flaky layout test failures.eroman@chromium.org2009-12-111-2/+5
| | | | | | | | | BUG=30081 TBR=dglazkov Review URL: http://codereview.chromium.org/490029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34388 0039d316-1c4b-4281-b951-d872f2087c98