Changeset 217563 in webkit


Ignore:
Timestamp:
May 30, 2017 11:29:55 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] TestWebKitAPI: ASSERTION FAILED: m_eglDisplay == EGL_NO_DISPLAY
https://bugs.webkit.org/show_bug.cgi?id=172702

Patch by Fujii Hironori <Fujii Hironori> on 2017-05-30
Reviewed by Alex Christensen.

EGL PlatformDisplay needs to be shut down before existing a
program on Windows.

  • TestWebKitAPI/Tests/WebKit/win/ScaleWebView.cpp:

(TestWebKitAPI::ScaleWebView::TearDown): Call shutDownWebKit().

  • TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp:

(TestWebKitAPI::WebViewDestruction::TearDown): Ditto.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r217557 r217563  
     12017-05-30  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [WinCairo] TestWebKitAPI: ASSERTION FAILED: m_eglDisplay == EGL_NO_DISPLAY
     4        https://bugs.webkit.org/show_bug.cgi?id=172702
     5
     6        Reviewed by Alex Christensen.
     7
     8        EGL PlatformDisplay needs to be shut down before existing a
     9        program on Windows.
     10
     11        * TestWebKitAPI/Tests/WebKit/win/ScaleWebView.cpp:
     12        (TestWebKitAPI::ScaleWebView::TearDown): Call shutDownWebKit().
     13        * TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp:
     14        (TestWebKitAPI::WebViewDestruction::TearDown): Ditto.
     15
    1162017-05-30  Per Arne Vollan  <pvollan@apple.com>
    217
  • trunk/Tools/TestWebKitAPI/Tests/WebKit/win/ScaleWebView.cpp

    r211207 r217563  
    5858{
    5959    m_webView = 0;
     60    shutDownWebKit();
    6061}
    6162
  • trunk/Tools/TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp

    r203597 r217563  
    128128
    129129    m_webView = 0;
     130    shutDownWebKit();
    130131
    131132    EXPECT_EQ(webViewCount(), currentWebViewCount - 1);
Note: See TracChangeset for help on using the changeset viewer.