Changeset 219497 in webkit
- Timestamp:
- Jul 13, 2017, 8:56:07 PM (8 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r219493 r219497 1 2017-07-13 Michael Catanzaro <mcatanzaro@igalia.com> 2 3 Fix style checker unit test 4 5 Unreviewed WebKit2 => WebKit fixup. 6 7 * Scripts/webkitpy/style/checker_unittest.py: 8 (CheckerDispatcherSkipTest.test_should_skip_with_warning): 9 1 10 2017-07-13 Matthew Hanson <matthew_hanson@apple.com> 2 11 -
trunk/Tools/Scripts/webkitpy/style/checker_unittest.py
r217216 r219497 282 282 paths_to_skip = [ 283 283 os.path.join('Tools', 'TestWebKitAPI', 'Tests', 'WebKitGtk', 'testatk.c'), 284 os.path.join('Source', 'WebKit 2', 'UIProcess', 'API', 'gtk', 'webkit2.h'),285 os.path.join('Source', 'WebKit 2', 'UIProcess', 'API', 'gtk', 'WebKitWebView.h'),286 os.path.join('Source', 'WebKit 2', 'UIProcess', 'API', 'gtk', 'WebKitLoader.h'),284 os.path.join('Source', 'WebKit', 'UIProcess', 'API', 'gtk', 'webkit2.h'), 285 os.path.join('Source', 'WebKit', 'UIProcess', 'API', 'gtk', 'WebKitWebView.h'), 286 os.path.join('Source', 'WebKit', 'UIProcess', 'API', 'gtk', 'WebKitLoader.h'), 287 287 ] 288 288 … … 294 294 paths_not_to_skip = [ 295 295 "foo.txt", 296 os.path.join('Source', 'WebKit 2', 'UIProcess', 'API', 'gtk', 'HelperClass.cpp'),297 os.path.join('Source', 'WebKit 2', 'UIProcess', 'API', 'gtk', 'HelperClass.h'),298 os.path.join('Source', 'WebKit 2', 'UIProcess', 'API', 'gtk', 'WebKitWebView.cpp'),299 os.path.join('Source', 'WebKit 2', 'UIProcess', 'API', 'gtk', 'WebKitWebViewPrivate.h'),296 os.path.join('Source', 'WebKit', 'UIProcess', 'API', 'gtk', 'HelperClass.cpp'), 297 os.path.join('Source', 'WebKit', 'UIProcess', 'API', 'gtk', 'HelperClass.h'), 298 os.path.join('Source', 'WebKit', 'UIProcess', 'API', 'gtk', 'WebKitWebView.cpp'), 299 os.path.join('Source', 'WebKit', 'UIProcess', 'API', 'gtk', 'WebKitWebViewPrivate.h'), 300 300 os.path.join('Tools', 'TestWebKitAPI', 'Tests', 'WebKit2Gtk', 'WebViewTest.cpp'), 301 301 os.path.join('Tools', 'TestWebKitAPI', 'Tests', 'WebKit2Gtk', 'WebViewTest.h'),
Note:
See TracChangeset
for help on using the changeset viewer.