Changeset 62913 in webkit


Ignore:
Timestamp:
Jul 9, 2010 1:09:26 AM (14 years ago)
Author:
kent.hansen@nokia.com
Message:

2010-07-09 Kent Hansen <kent.hansen@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Skip test that never terminates on maemo5

Due to https://bugs.webkit.org/show_bug.cgi?id=38538
the tst_QWebPage::infiniteLoopJS() autotest never terminates.
Skip the test so that the test case may run to completion.

Patch by Dominik Holland <dominik.holland@nokia.com>

  • tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::infiniteLoopJS):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r62910 r62913  
     12010-07-09  Kent Hansen  <kent.hansen@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Skip test that never terminates on maemo5
     6
     7        Due to https://bugs.webkit.org/show_bug.cgi?id=38538
     8        the tst_QWebPage::infiniteLoopJS() autotest never terminates.
     9        Skip the test so that the test case may run to completion.
     10
     11        Patch by Dominik Holland <dominik.holland@nokia.com>
     12
     13        * tests/qwebpage/tst_qwebpage.cpp:
     14        (tst_QWebPage::infiniteLoopJS):
     15
    1162010-07-09  Simon Hausmann <simon.hausmann@nokia.com>
    217
  • trunk/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp

    r61117 r62913  
    235235void tst_QWebPage::infiniteLoopJS()
    236236{
     237#ifdef Q_WS_MAEMO_5
     238    QSKIP("Test never terminates on Maemo 5 : https://bugs.webkit.org/show_bug.cgi?id=38538", SkipAll);
     239#endif
    237240    JSTestPage* newPage = new JSTestPage(m_view);
    238241    m_view->setPage(newPage);
Note: See TracChangeset for help on using the changeset viewer.