summaryrefslogtreecommitdiffstats
path: root/webkit/tools
Commit message (Collapse)AuthorAgeFilesLines
* Add a failure that started after we started sharding the fast and http ↵ojan@chromium.org2009-12-041-0/+6
| | | | | | | | directories. Review URL: http://codereview.chromium.org/465047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33764 0039d316-1c4b-4281-b951-d872f2087c98
* Change "OTHER" to "MISSING". All the expectations that used to beojan@chromium.org2009-12-042-2/+4
| | | | | | | | classified as OTHER are now otherwise classified except for missing expectations. Review URL: http://codereview.chromium.org/465043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33763 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 33757 - Use multiple workers with lighttpd. Hopefully this will reducevandebo@google.com2009-12-042-9/+3
| | | | | | | | | | | http flakiness. I wonder if this would have reduced the http flakiness on Mac as well. Review URL: http://codereview.chromium.org/466027 TBR=ojan@chromium.org Review URL: http://codereview.chromium.org/460059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33762 0039d316-1c4b-4281-b951-d872f2087c98
* Use multiple workers with lighttpd. Hopefully this will reduceojan@chromium.org2009-12-042-3/+9
| | | | | | | | http flakiness. I wonder if this would have reduced the http flakiness on Mac as well. Review URL: http://codereview.chromium.org/466027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33757 0039d316-1c4b-4281-b951-d872f2087c98
* Actually, this looks to be pretty stable on the V8-latest builders.ojan@chromium.org2009-12-031-8/+2
| | | | | | | So, shard the http and fast directories on all builders. Review URL: http://codereview.chromium.org/463021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33753 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the rebaselining tool - check to make sure that we actually were passeddpranke@google.com2009-12-031-3/+4
| | | | | | | | | | | | in tests before trying to add them as PASSes. R=atwilson@chromium.org TEST='type ./rebaseline.sh in the layout_tests dir' BUG=none Review URL: http://codereview.chromium.org/467010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33750 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes to the string MatchPattern functions:tony@chromium.org2009-12-031-6/+7
| | | | | | | | | | | | | | | 1) Make it explicit that it only supports ASCII (since it iterates character by character). 2) Limit the recursion to 16 levels. We could allow more, but in the case of a ?, it has exponential complexity, so I figured 16 was a good stopping point. It seems rare that someone would have more than 16 '?' and '*'s. BUG=28645 Review URL: http://codereview.chromium.org/460047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33748 0039d316-1c4b-4281-b951-d872f2087c98
* Re-enable the appcache layout tests with more specific expectations for the ↵jennb@chromium.org2009-12-031-8/+16
| | | | | | | | | | | flaky tests. TEST=none BUG=2844 Review URL: http://codereview.chromium.org/468010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33742 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes the layout test formatter to properly detect new form of the layout ↵gwilson@google.com2009-12-031-1/+1
| | | | | | | | | | | | test summary, should find failures successfully. R=ojan BUG=none TEST=run layout test formatter against one of the canaries, it should find failures Review URL: http://codereview.chromium.org/465032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33735 0039d316-1c4b-4281-b951-d872f2087c98
* Un-revert r33715 (i.e., re-apply r33709 and r33640), we think the failures weredpranke@google.com2009-12-038-1006/+594
| | | | | | | | | | | | false negatives. R=ojan@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/462024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33733 0039d316-1c4b-4281-b951-d872f2087c98
* Update an inaccurate expectation.ojan@chromium.org2009-12-031-5/+8
| | | | | | Review URL: http://codereview.chromium.org/463019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33729 0039d316-1c4b-4281-b951-d872f2087c98
* Rollback r33709, r33640 until we can figure out why the output is gettingdpranke@google.com2009-12-038-594/+1006
| | | | | | | | | | | | interleaved in the buildbots on linux ... BUG=none R=ojan TEST=none Review URL: http://codereview.chromium.org/464022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33715 0039d316-1c4b-4281-b951-d872f2087c98
* Shard the fast and http directories on the V8-latest webkit bots.ojan@chromium.org2009-12-032-3/+12
| | | | | | | | | With the layout tests dashboard we can identify new flakiness that results. If the flakiness is small and manageable, then we can turn this on for all the bots. Review URL: http://codereview.chromium.org/467005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33711 0039d316-1c4b-4281-b951-d872f2087c98
* Modify run_webkit_tests to process results incrementally as they happen, insteaddpranke@google.com2009-12-032-32/+24
| | | | | | | | | | | | | | of in a batch at the end. This by itself is a pretty useless change, but will allow us to actually display results more coherently as they occur (which will show up in my next patch). R=ojan@chromium.org TEST=none BUG=none Review URL: http://codereview.chromium.org/464011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33709 0039d316-1c4b-4281-b951-d872f2087c98
* Remove change-values-from-transition as a flaky test from test_expectations, ↵jparent@chromium.org2009-12-031-2/+0
| | | | | | | | | | | | | | as it is no longer flaky. Upstream fix: http://trac.webkit.org/changeset/51613/ Visual dipictrion of un-flakiness: http://src.chromium.org/viewvc/chrome/trunk/src/webkit/tools/layout_tests/flakiness_dashboard.html#tests=LayoutTests%2Ftransitions%2Fchange-values-during-transition.html BUG=10403,9798 TEST=none Review URL: http://codereview.chromium.org/460045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33708 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline three linux expectations with bad checksums - there's probably adpranke@google.com2009-12-031-5/+0
| | | | | | | | | | | | | | bug here somewhere about checksums diffing, but ignore it for now. R=vandebo@chromium.org BUG=29259 TEST=LayoutTests/fast/layers/self-painting-outline.html TEST=LayoutTests/fast/repaint/inline-relative-positioned.html TEST=LayoutTests/svg//W3C-SVG-1.1/filters-image-01-b.svg Review URL: http://codereview.chromium.org/464012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33658 0039d316-1c4b-4281-b951-d872f2087c98
* remove-cache.html, fail-on-update.html, etc continue to timeout even after ↵vandebo@google.com2009-12-031-6/+5
| | | | | | | | | | | | | | | being marked as slow. Revert 33624 - Enable all but a few appcache layout tests. TEST=none BUG=2844 Review URL: http://codereview.chromium.org/465011 TBR=jennb@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33657 0039d316-1c4b-4281-b951-d872f2087c98
* Roll webkit to 51615, disable flaky/broken test added in 51615.atwilson@chromium.org2009-12-031-0/+2
| | | | | | | | | BUG=29251 TBR=ajwong TEST=none Review URL: http://codereview.chromium.org/460032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33654 0039d316-1c4b-4281-b951-d872f2087c98
* Mark three linux tests as failing images for the moment; it looks like theydpranke@google.com2009-12-031-0/+6
| | | | | | | | | | | | | | need rebaselined hashes. BUG=29259 TEST=LayoutTests/fast/layers/self-painting-outline.html TEST=LayoutTests/fast/repaint/inline-relative-positioned.html TEST=LayoutTests/svg/W3C-SVG-1.1/filters-image-01-b.svg R=vandebo@chromium.org Review URL: http://codereview.chromium.org/465019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33647 0039d316-1c4b-4281-b951-d872f2087c98
* Mark a few more appcache layout tests as slow.jennb@chromium.org2009-12-031-0/+3
| | | | | | | | | TEST=none BUG=24182 Review URL: http://codereview.chromium.org/460034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33643 0039d316-1c4b-4281-b951-d872f2087c98
* Mark a few appcache layout tests as slow.jennb@chromium.org2009-12-031-0/+4
| | | | | | | | | | TEST=none BUG=24182 Review URL: http://codereview.chromium.org/464010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33641 0039d316-1c4b-4281-b951-d872f2087c98
* Clean up the statistics reported by run_webkit_tests to be easier to follow.dpranke@google.com2009-12-037-991/+587
| | | | | | | | | | | | | | | | | | | The most important changes are that we bin the failures into mutually exclusive buckets, so that they aren't double-reported like before. As a result of this, compare_failures became much simpler and I ended up folding it into run_webkit_tests and test_expectations In addition, a lot of the data structures for holding different sets of failures have been revised to be more consistent and extensible. This allows me to have the output match the LTTF dashboard as well. R=ojan@chromium.org,tc@chromium.org,pam@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/414066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33640 0039d316-1c4b-4281-b951-d872f2087c98
* Change the kill commands on the mac to be silent when there's nothing to kill.dpranke@google.com2009-12-031-2/+6
| | | | | | | | | | R=jrg@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/465017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33639 0039d316-1c4b-4281-b951-d872f2087c98
* Add V8-specific baselines for inspector-support tests.dglazkov@chromium.org2009-12-031-3/+0
| | | | | | | | | | TBR=pfeldman TEST=none BUG=27996 Review URL: http://codereview.chromium.org/462015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33638 0039d316-1c4b-4281-b951-d872f2087c98
* Webkit roll to 51613.atwilson@chromium.org2009-12-031-0/+3
| | | | | | | Rebaselined/disabled tests as necessary. Review URL: http://codereview.chromium.org/465016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33635 0039d316-1c4b-4281-b951-d872f2087c98
* Remove sleep() call that is no longer needed.dpranke@google.com2009-12-031-2/+0
| | | | | | | | | | BUG=none TEST=none R=ukai@chromium.org Review URL: http://codereview.chromium.org/449021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33628 0039d316-1c4b-4281-b951-d872f2087c98
* Enable all but a few appcache layout tests.jennb@chromium.org2009-12-031-5/+6
| | | | | | | | | TEST=none BUG=2844 Review URL: http://codereview.chromium.org/465011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33624 0039d316-1c4b-4281-b951-d872f2087c98
* Add GURL-specific baseline for a layout test.dglazkov@chromium.org2009-12-021-6/+3
| | | | | | | | | | R=brettw TEST=none BUG=27548 Review URL: http://codereview.chromium.org/462012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33620 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS to 51589 and disable tests broken by that rev.atwilson@chromium.org2009-12-021-2/+4
| | | | | | | | | BUG=29212 TBR=ajwong Review URL: http://codereview.chromium.org/462008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33597 0039d316-1c4b-4281-b951-d872f2087c98
* Update test_expectations.ukai@chromium.org2009-12-021-11/+4
| | | | | | | | | | | | | Remove unflaky tests on Mac. http://src.chromium.org/viewvc/chrome/trunk/src/webkit/tools/layout_tests/flakiness_dashboard.html#tests=list-marker.html,single-character-pi-stylesheet.xhtml,cache-override.html,bug28341.html,access-control-basic-allow-preflight-cache-invalidation-by-method.html,xmlhttprequest-no-content-length-onProgress.html,xmlhttprequest-setrequestheader-no-value.html BUG=18978,10323,10361,23473,28417,29167 TEST=none Review URL: http://codereview.chromium.org/462005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33566 0039d316-1c4b-4281-b951-d872f2087c98
* Update test expectations.ukai@chromium.org2009-12-021-1/+0
| | | | | | | | | | | | Not flaky LayoutTests/websocket/tests/frame-length-skip.html http://src.chromium.org/viewvc/chrome/trunk/src/webkit/tools/layout_tests/flakiness_dashboard.html#tests=websocket BUG=28044 TEST=none Review URL: http://codereview.chromium.org/460011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33557 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit Roll 51581:51584ukai@chromium.org2009-12-021-3/+6
| | | | | | | | | BUG=28266 TEST=trybots Review URL: http://codereview.chromium.org/462003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33552 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit Roll 51576:51581ukai@chromium.org2009-12-021-0/+3
| | | | | | | | | BUG=none TEST=trybots Review URL: http://codereview.chromium.org/458006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33549 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline some tests.hamaji@chromium.org2009-12-021-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | LayoutTests/fast/repaint/list-marker.html LayoutTests/css2.1/t1205-c561-list-displ-00-b.html LayoutTests/css2.1/t1205-c565-list-pos-00-b.html LayoutTests/css2.1/t1205-c566-list-stl-00-e-ag.html They are marked as expected failures in http://codereview.chromium.org/454017 The list-marker one is a bit trickier than others. The position of texts after the list makers were wrong in expected image. However, it seems italic-styled character 'p' is lacking with the current test_shell and this is why it was marked as an expected failure. As its dump render tree result is correct, I've just rebaselined the text and added some comments on test_expectations.txt. Note that the following upstream change will fix the rest tests. https://bugs.webkit.org/show_bug.cgi?id=32014 BUG=28183 TEST=trybots Review URL: http://codereview.chromium.org/450033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33548 0039d316-1c4b-4281-b951-d872f2087c98
* Update test_expectations for MACukai@chromium.org2009-12-021-2/+4
| | | | | | | | | BUG=29157 TEST=none Review URL: http://codereview.chromium.org/460010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33547 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit Roll 51534:51576ukai@chromium.org2009-12-021-0/+8
| | | | | | | | | BUG=none TEST=trybots Review URL: http://codereview.chromium.org/461002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33542 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline editing layout test.victorw@chromium.org2009-12-021-9/+6
| | | | | | | | | | | | Regroup tests failed due to the same reason. R=japhet TEST=none BUG=3273,29059 Review URL: http://codereview.chromium.org/459002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33525 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the SLOW expectation, since the test passes without it.dglazkov@chromium.org2009-12-021-2/+0
| | | | | | | | | | TBR=ojan TEST=none BUG=24182 Review URL: http://codereview.chromium.org/453024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33517 0039d316-1c4b-4281-b951-d872f2087c98
* Correct expectations for a passing test.dglazkov@chromium.org2009-12-021-4/+2
| | | | | | | | | | TBR=ojan TEST=none BUG=24182 Review URL: http://codereview.chromium.org/457030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33514 0039d316-1c4b-4281-b951-d872f2087c98
* Update the Pepper APIs to the latest spec for the 2D demo plugin.brettw@chromium.org2009-12-012-27/+20
| | | | | | | | | | | | | | | | | | | | | This also adds the npapi headers to the npapi.gyp file since I got tired of Visual Studio not finding the files. This removes the "open file in sandbox" feature which it doesn't look like we will use. One more significant change is that I changed to including pepper.h in all cases, even when pepper is disabled. We used to have a forward declare in npapi.h for the structs in question, but we'll be adding a lot more structs for the different contexts and I don't think this will scale. I think its OK fo rthe pepper API declarations to be available when Pepper isn't enabled. BUT=none TEST=none Review URL: http://codereview.chromium.org/453015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33501 0039d316-1c4b-4281-b951-d872f2087c98
* Defer all remaining accessibility tests.dglazkov@chromium.org2009-12-011-92/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need a better way to test accessibility. R=dpranke TEST=none BUG=27044 BUG=27923 BUG=26195 BUG=27044 BUG=27555 BUG=13907 BUG=29001 BUG=10322 BUG=29002 BUG=29003 BUG=29005 BUG=29006 BUG=29007 BUG=29008 BUG=29010 BUG=29011 BUG=29014 BUG=29015 Review URL: http://codereview.chromium.org/452035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33496 0039d316-1c4b-4281-b951-d872f2087c98
* Mark accessibility/table-cells test as WONTFIX.dglazkov@chromium.org2009-12-011-1/+1
| | | | | | | | | | | | This was just an omission from http://src.chromium.org/viewvc/chrome?view=rev&revision=33329. TBR=dpranke TEST=none BUG=28998 Review URL: http://codereview.chromium.org/455023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33460 0039d316-1c4b-4281-b951-d872f2087c98
* New baselines for Skia 447 roll. Minor pixel differences caused by new line ↵senorblanco@chromium.org2009-12-011-9/+1
| | | | | | | | | | | clipping algo. BUG=none TEST=layout test bots stay green Review URL: http://codereview.chromium.org/456023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33448 0039d316-1c4b-4281-b951-d872f2087c98
* Mark XHTML Mobile Profile and WCSS tests as WONTFIX.dglazkov@chromium.org2009-12-011-15/+10
| | | | | | | | | | | | | Like WML, we are not planning to support these. R=japhet TEST=none BUG=12254 BUG=12310 Review URL: http://codereview.chromium.org/449057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33445 0039d316-1c4b-4281-b951-d872f2087c98
* Update test expectationsukai@chromium.org2009-12-011-1/+7
| | | | | | | | | | | | | | | | | | Add 5 new failures LayoutTests/css2.1/t1205-c561-list-displ-00-b.html = IMAGE+TEXT LayoutTests/css2.1/t1205-c565-list-pos-00-b.html = IMAGE+TEXT LayoutTests/css2.1/t1205-c566-list-stl-00-e-ag.html = IMAGE+TEXT LayoutTests/fast/block/positioning/complex-percentage-height.html = IMAGE+TEXT LayoutTests/fast/lists/item-not-in-list-line-wrapping.html = IMAGE+TEXT Add TEXT diffs for LayoutTests/fast/repaint/list-marker.html BUG=28183 TEST=none Review URL: http://codereview.chromium.org/454017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33438 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline LayoutTests/svg/W3C-SVG-1.1/masking-mask-01-b-expected.png.yutak@chromium.org2009-12-011-4/+0
| | | | | | | | | | | | This test was failing because of a bug in SVG masks. This was fixed in WebKit changeset 51496. Now this test passes in all platforms. BUG=25175 TEST=none Review URL: http://codereview.chromium.org/454015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33436 0039d316-1c4b-4281-b951-d872f2087c98
* GTK test_shell: don't send some mouse events to renderer.hamaji@chromium.org2009-12-011-0/+4
| | | | | | | | | | | | | | | test_shell crashses if we double/triple click or press buttons whose id is greater than 3. After this change, we ignore such mouse events just like chromium. Corresponding changes: http://codereview.chromium.org/155250 http://codereview.chromium.org/431031 BUG=none TEST=none Review URL: http://codereview.chromium.org/435041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33435 0039d316-1c4b-4281-b951-d872f2087c98
* Update test expectationsukai@chromium.org2009-12-011-0/+7
| | | | | | | | | | | | | | LayoutTests/editing/selection/5825350-1.html = TEXT LayoutTests/editing/selection/5825350-2.html = TEXT LayoutTests/editing/selection/mixed-editability-10.html = TEXT LayoutTests/editing/deleting/5390681-2.html = IMAGE+TEXT BUG=29059 TEST=none Review URL: http://codereview.chromium.org/450032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33430 0039d316-1c4b-4281-b951-d872f2087c98
* Update test_expectations.txtukai@chromium.org2009-12-011-3/+2
| | | | | | | | | | | | New LayoutTests/svg/custom/mask-with-all-units.svg added by webkit r51496 fails on win and linux. LayoutTests/storage/domstorage/complex-keys.html becomes green. BUG=none TEST=none Review URL: http://codereview.chromium.org/457020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33429 0039d316-1c4b-4281-b951-d872f2087c98
* Add new failures from webkit merge 51480:51511ukai@chromium.org2009-12-011-2/+4
| | | | | | | | | | | Rm LayoutTests/media/progress-event-at-least-one.html. removed at webkit r51511. BUG=13907 TEST=none Review URL: http://codereview.chromium.org/449046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33424 0039d316-1c4b-4281-b951-d872f2087c98