Changeset 90545 in webkit


Ignore:
Timestamp:
Jul 7, 2011 12:16:48 AM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-07-07 Adam Barth <abarth@webkit.org>

REGRESSION(90520): chromium GPU tests produce output in the LayoutTests directory
https://bugs.webkit.org/show_bug.cgi?id=64067

Reviewed by Eric Seidel.

The author of r90520 forgot to change the chromium_gpu.py implemenation
of this method as well.

  • Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r90543 r90545  
     12011-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
    1132011-07-06  Eric Seidel  <eric@webkit.org>
    214
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py

    r89031 r90545  
    8383        # See https://bugs.webkit.org/show_bug.cgi?id=53117
    8484        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)])
    8686
    8787
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py

    r89031 r90545  
    8080            self.assertEqual(port._webkit_baseline_path('chromium-gpu'), paths[1])
    8181
    82 
    8382        # Test that we're limiting to the correct directories.
    8483        # These two tests are picked mostly at random, but we make sure they
     
    8685        files = port.tests(None)
    8786
    88         path = port.abspath_for_test('compositing/checkerboard.html')
    89         self.assertTrue(port._filesystem.exists(path))
     87        path = 'compositing/checkerboard.html'
     88        self.assertTrue(port._filesystem.exists(port.abspath_for_test(path)))
    9089        self.assertTrue(path in files)
    9190
    92         path = port.abspath_for_test('fast/html/keygen.html')
    93         self.assertTrue(port._filesystem.exists(path))
     91        path = 'fast/html/keygen.html'
     92        self.assertTrue(port._filesystem.exists(port.abspath_for_test(path)))
    9493        self.assertFalse(path in files)
    9594        if port_name.startswith('chromium-gpu-mac'):
    96             path = port.abspath_for_test('fast/canvas/set-colors.html')
    97             self.assertTrue(port._filesystem.exists(path))
     95            path = 'fast/canvas/set-colors.html'
     96            self.assertTrue(port._filesystem.exists(port.abspath_for_test(path)))
    9897            self.assertFalse(path in files)
    9998
Note: See TracChangeset for help on using the changeset viewer.