WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
63358
nrwt: remove --use-apache from the command line
https://bugs.webkit.org/show_bug.cgi?id=63358
Summary
nrwt: remove --use-apache from the command line
Dirk Pranke
Reported
2011-06-24 15:13:24 PDT
nrwt: remove --use-apache from the command line
Attachments
Patch
(9.71 KB, patch)
2011-06-24 15:23 PDT
,
Dirk Pranke
no flags
Details
Formatted Diff
Diff
Patch
(10.88 KB, patch)
2011-07-06 19:23 PDT
,
Dirk Pranke
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Dirk Pranke
Comment 1
2011-06-24 15:23:06 PDT
Created
attachment 98549
[details]
Patch
Adam Barth
Comment 2
2011-06-28 18:20:32 PDT
Comment on
attachment 98549
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=98549&action=review
> Tools/Scripts/webkitpy/layout_tests/port/base.py:848 > + """Override if your port uses something other than Apache for serving > + web pages."""
I'd skip this docstring
> Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py:58 > + USES_APACHE = False
This appears to be unused.
Dirk Pranke
Comment 3
2011-07-06 14:46:31 PDT
Committed
r90503
: <
http://trac.webkit.org/changeset/90503
>
Mihai Parparita
Comment 4
2011-07-06 16:37:21 PDT
Reverted
r90503
for reason: Makes Chromium Windows canary bots hang Committed
r90514
: <
http://trac.webkit.org/changeset/90514
>
Dirk Pranke
Comment 5
2011-07-06 19:23:33 PDT
Created
attachment 99914
[details]
Patch
Dirk Pranke
Comment 6
2011-07-06 19:24:28 PDT
Comment on
attachment 99914
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=99914&action=review
> Tools/Scripts/webkitpy/layout_tests/port/base.py:234 > + return self._executive.run_command([path, "-v"], env=env, return_exit_code=True) == 0
This change fixes the hang on windows. Note that I had to add the env keyword param to executive.run_command() for this to work.
Dirk Pranke
Comment 7
2011-07-06 19:25:23 PDT
Comment on
attachment 99914
[details]
Patch no unit tests added for executive.run_command, although there probably should be one. I didn't add a test for this chromium_win either, because it would involve a bunch of mocking and I was feeling lazy.
Adam Barth
Comment 8
2011-07-06 19:26:26 PDT
Comment on
attachment 99914
[details]
Patch Ok.
WebKit Review Bot
Comment 9
2011-07-06 19:50:00 PDT
Comment on
attachment 99914
[details]
Patch Clearing flags on attachment: 99914 Committed
r90527
: <
http://trac.webkit.org/changeset/90527
>
WebKit Review Bot
Comment 10
2011-07-06 19:50:05 PDT
All reviewed patches have been landed. Closing bug.
James Robinson
Comment 11
2011-07-10 21:31:56 PDT
A bunch of http tests are still timing out on the Win7 canary:
http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=http%2Ftests%2Fappcache%2Fsimple.html%2Chttp%2Ftests%2Fappcache%2Ftop-frame-1.html%2Chttp%2Ftests%2Fappcache%2Ftop-frame-3.html%2Chttp%2Ftests%2Fappcache%2Ftop-frame-4.html%2Chttp%2Ftests%2Fappcache%2Fvideo.html%2Chttp%2Ftests%2Fappcache%2Fwhitelist-wildcard.html%2Chttp%2Ftests%2Fappcache%2Fxhr-foreign-resource.html%2Chttp%2Ftests%2Fcache%2Fhistory-only-cached-subresource-loads-max-age-https.html%2Chttp%2Ftests%2Fcache%2Fhistory-only-cached-subresource-loads.html%2Chttp%2Ftests%2Fcache%2Fpost-redirect-get.php%2Chttp%2Ftests%2Fcache%2Fpost-with-cached-subresources.php%2Chttp%2Ftests%2Fcache%2Fstopped-revalidation.html%2Chttp%2Ftests%2Fcache%2Fsubresource-expiration-1.html%2Chttp%2Ftests%2Fcache%2Fsubresource-expiration-2.html%2Chttp%2Ftests%2Fcache%2Fsubresource-fragment-identifier.html%2Chttp%2Ftests%2Fcanvas%2Fphilip%2Ftests%2Fsecurity.drawImage.canvas.html%2Chttp%2Ftests%2Fcanvas%2Fphilip%2Ftests%2Fsecurity.drawImage.image.html%2Chttp%2Ftests%2Fcanvas%2Fphilip%2Ftests%2Fsecurity.pattern.canvas.fillStyle.html%2Chttp%2Ftests%2Fcanvas%2Fphilip%2Ftests%2Fsecurity.pattern.canvas.strokeStyle.html%2Chttp%2Ftests%2Fcanvas%2Fphilip%2Ftests%2Fsecurity.pattern.canvas.timing.html%2Cplugins%2Fmouse-click-plugin-clears-selection.html&group=%40ToT%20-%20chromium.org
James Robinson
Comment 12
2011-07-10 22:32:00 PDT
Added = TIMEOUT lines to test_expectations in
http://trac.webkit.org/changeset/90718
James Robinson
Comment 13
2011-07-10 23:40:26 PDT
Adding those = TIMEOUT lines seemed to just make a different set of tests time out, so I removed those. At this point I'm suspecting an issue with the bot (
http://build.chromium.org/p/chromium.webkit/builders/Webkit%20Win7
) but I'm not able to do anything about it right now.
Mihai Parparita
Comment 14
2011-07-11 10:55:48 PDT
(In reply to
comment #13
)
> Adding those = TIMEOUT lines seemed to just make a different set of tests time out, so I removed those.
Note that's because of the --exit-after-n-crashes-or-timeouts flag, which meant that we stopped running tests after 20 unexpected timeouts.
Dirk Pranke
Comment 15
2011-08-16 16:38:42 PDT
re-closing this.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug