RESOLVED FIXED 142938
Add --allowed-host support to run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=142938
Summary Add --allowed-host support to run-webkit-tests
Jer Noble
Reported 2015-03-21 09:00:12 PDT
Add --allowed-host support to run-webkit-tests
Attachments
Patch (3.97 KB, patch)
2015-03-21 09:08 PDT, Jer Noble
no flags
Patch (3.96 KB, patch)
2015-03-25 11:56 PDT, Jer Noble
no flags
Jer Noble
Comment 1 2015-03-21 09:08:35 PDT
WebKit Commit Bot
Comment 2 2015-03-21 09:11:03 PDT
Attachment 249173 [details] did not pass style-queue: ERROR: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py:324: whitespace before ']' [pep8/E202] [5] Total errors found: 1 in 4 files If any of these errors are false positives, please file a bug against check-webkit-style.
Jer Noble
Comment 3 2015-03-25 11:56:53 PDT
WebKit Commit Bot
Comment 4 2015-03-25 11:58:52 PDT
Attachment 249420 [details] did not pass style-queue: ERROR: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py:324: whitespace before ']' [pep8/E202] [5] Total errors found: 1 in 4 files If any of these errors are false positives, please file a bug against check-webkit-style.
Brent Fulgham
Comment 5 2015-03-25 13:02:35 PDT
Comment on attachment 249420 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249420&action=review Looks good. You might be able to simplify the "options.layout_tests_dir" change, but it's fine to leave as-is. > Tools/Scripts/webkitpy/port/base.py:141 > + self._layout_tests_dir = hasattr(options, 'layout_tests_dir') and options.layout_tests_dir and self._filesystem.abspath(options.layout_tests_dir) Would this work with just "hasattr(options, 'layout_tests_dir') and self._filesystem.abspath(options.layout_tests_dir)"? I'm not sure what leaving the "options.layout_tests_dir" gets us. If it's "", we should get the same thing out of self._filesystem.abspath, right?
Jer Noble
Comment 6 2015-03-25 13:03:59 PDT
(In reply to comment #5) > Comment on attachment 249420 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=249420&action=review > > Looks good. You might be able to simplify the "options.layout_tests_dir" > change, but it's fine to leave as-is. > > > Tools/Scripts/webkitpy/port/base.py:141 > > + self._layout_tests_dir = hasattr(options, 'layout_tests_dir') and options.layout_tests_dir and self._filesystem.abspath(options.layout_tests_dir) > > Would this work with just "hasattr(options, 'layout_tests_dir') and > self._filesystem.abspath(options.layout_tests_dir)"? I'm not sure what > leaving the "options.layout_tests_dir" gets us. If it's "", we should get > the same thing out of self._filesystem.abspath, right? I had that originally, but abspath() will throw if you pass in None, which is the default. So hasattr() will return true, the getter will return None, and abspath() will throw. So that's why the extra boolean check is there.
Jer Noble
Comment 7 2015-03-26 11:16:47 PDT
Comment on attachment 249420 [details] Patch Clearing flags on attachment: 249420 Committed r182018: <http://trac.webkit.org/changeset/182018>
Jer Noble
Comment 8 2015-03-26 11:16:51 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.