Changeset 70773 in webkit


Ignore:
Timestamp:
Oct 28, 2010 6:50:49 AM (14 years ago)
Author:
Adam Roben
Message:

Skip npn-invalidate-rect-invalidates-window.html on headless XP machines

TestNetscapePlugIn never receives a WM_PAINT message on headless XP
machines, so this test times out. Fixing the test is covered by
<http://webkit.org/b/48333>.

  • Scripts/old-run-webkit-tests: Skip

npn-invalidate-rect-invalidates-window.html on Windows if accelerated
compositing support is disabled, which likely means we're on a headless
XP machine.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r70765 r70773  
     12010-10-28  Adam Roben  <aroben@apple.com>
     2
     3        Skip npn-invalidate-rect-invalidates-window.html on headless XP
     4        machines
     5
     6        TestNetscapePlugIn never receives a WM_PAINT message on headless XP
     7        machines, so this test times out. Fixing the test is covered by
     8        <http://webkit.org/b/48333>.
     9
     10        * Scripts/old-run-webkit-tests: Skip
     11        npn-invalidate-rect-invalidates-window.html on Windows if accelerated
     12        compositing support is disabled, which likely means we're on a headless
     13        XP machine.
     14
    1152010-10-28  Kimmo Kinnunen  <kimmok@iki.fi>
    216
  • trunk/WebKitTools/Scripts/old-run-webkit-tests

    r70572 r70773  
    544544        $ignoredFiles{'media/video-no-audio.html'} = 1;
    545545    }
     546
     547    # Here we're using !$hasAcceleratedCompositing as a proxy for "is a headless XP machine" (like
     548    # our test slaves). Headless XP machines can neither support accelerated compositing nor pass
     549    # this test, so skipping the test here is expedient, if a little sloppy. See
     550    # <http://webkit.org/b/48333>.
     551    $ignoredFiles{'platform/win/plugins/npn-invalidate-rect-invalidates-window.html'} = 1 if isAppleWinWebKit();
    546552}
    547553
Note: See TracChangeset for help on using the changeset viewer.