From dde4413f36355ab60a8773deab37cebc3368f269 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 4 Jul 2021 14:11:04 +0100 Subject: [PATCH] Re-enable most of file functions tests under Wine Exclude just the single test which fails for mysterious reason when using Wine, but not all the rest of them. --- .github/workflows/ci_msw_cross.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_msw_cross.yml b/.github/workflows/ci_msw_cross.yml index 2122000bbd..4da84dea15 100644 --- a/.github/workflows/ci_msw_cross.yml +++ b/.github/workflows/ci_msw_cross.yml @@ -203,8 +203,8 @@ jobs: # Only TestSetTimes fails, but only the full test can be excluded. excluded_tests+=('~FileNameTestCase') - # Only FileError fails, but the whole test has to be excluded. - excluded_tests+=('~FileFunctionsTestCase') + # Closing the file fails for unknown reason under Wine. + excluded_tests+=('~FileFunctions::Error') # Sporadic failures due to extra events. excluded_tests+=('~wxFileSystemWatcher::EventCreate')