Changeset 90545 in webkit
- Timestamp:
- Jul 7, 2011, 12:16:48 AM (14 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r90543 r90545 1 2011-07-07 Adam Barth <abarth@webkit.org> 2 3 REGRESSION(90520): chromium GPU tests produce output in the LayoutTests directory 4 https://bugs.webkit.org/show_bug.cgi?id=64067 5 6 Reviewed by Eric Seidel. 7 8 The author of r90520 forgot to change the chromium_gpu.py implemenation 9 of this method as well. 10 11 * Scripts/webkitpy/layout_tests/port/chromium_gpu.py: 12 1 13 2011-07-06 Eric Seidel <eric@webkit.org> 2 14 -
trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py
r89031 r90545 83 83 # See https://bugs.webkit.org/show_bug.cgi?id=53117 84 84 paths += ['plugins/invalidate_rect.html'] 85 return test_files.find(port, paths)85 return set([port.relative_test_filename(f) for f in test_files.find(port, paths)]) 86 86 87 87 -
trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py
r89031 r90545 80 80 self.assertEqual(port._webkit_baseline_path('chromium-gpu'), paths[1]) 81 81 82 83 82 # Test that we're limiting to the correct directories. 84 83 # These two tests are picked mostly at random, but we make sure they … … 86 85 files = port.tests(None) 87 86 88 path = port.abspath_for_test('compositing/checkerboard.html')89 self.assertTrue(port._filesystem.exists(p ath))87 path = 'compositing/checkerboard.html' 88 self.assertTrue(port._filesystem.exists(port.abspath_for_test(path))) 90 89 self.assertTrue(path in files) 91 90 92 path = port.abspath_for_test('fast/html/keygen.html')93 self.assertTrue(port._filesystem.exists(p ath))91 path = 'fast/html/keygen.html' 92 self.assertTrue(port._filesystem.exists(port.abspath_for_test(path))) 94 93 self.assertFalse(path in files) 95 94 if port_name.startswith('chromium-gpu-mac'): 96 path = port.abspath_for_test('fast/canvas/set-colors.html')97 self.assertTrue(port._filesystem.exists(p ath))95 path = 'fast/canvas/set-colors.html' 96 self.assertTrue(port._filesystem.exists(port.abspath_for_test(path))) 98 97 self.assertFalse(path in files) 99 98
Note:
See TracChangeset
for help on using the changeset viewer.