From e9aaca50c2def50b2a77af9ebacd4cb3afc596f6 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 30 Mar 2022 00:55:17 +0200 Subject: [PATCH] Fix the name of the test excluded in the CI builds using Wine The apparently innocuous a0d1379a57 (Split wxDC::GetTextExtent() test case in 3 pieces, 2022-03-29) has broken the CI builds because it moved the code failing under Wine (apparently due to problems in metafile support implementation) into a differently named test. Fix this now by excluding the right test. --- .github/workflows/ci_msw_cross.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_msw_cross.yml b/.github/workflows/ci_msw_cross.yml index b7a1d0d948..dad89a9f0f 100644 --- a/.github/workflows/ci_msw_cross.yml +++ b/.github/workflows/ci_msw_cross.yml @@ -249,7 +249,7 @@ jobs: excluded_gui_tests+=('~ClippingBoxTestCase*') excluded_gui_tests+=('~ComboBoxTestCase') # TextChangeEvents excluded_gui_tests+=('~DatePickerCtrlTestCase') # Range - excluded_gui_tests+=('~wxDC::GetTextExtent') + excluded_gui_tests+=('~wxEnhMetaFileDC::GetTextExtent') excluded_gui_tests+=('~ExecTestCase') excluded_gui_tests+=('~wxFont::GetSet') excluded_gui_tests+=('~GraphicsPathTestCaseGDIPlus')