lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master 6d8e4f1: Temporarily move a wine workaround a


From: Greg Chicares
Subject: [lmi-commits] [lmi] master 6d8e4f1: Temporarily move a wine workaround aside
Date: Wed, 28 Apr 2021 22:21:47 -0400 (EDT)

branch: master
commit 6d8e4f143e069868ba7d52d20842de4a06dfc747
Author: Gregory W. Chicares <gchicares@sbcglobal.net>
Commit: Gregory W. Chicares <gchicares@sbcglobal.net>

    Temporarily move a wine workaround aside
    
    This commit temporarily reverts a part of commit 26dd8aa5c0b, only for
    the purpose of merging a set of std::filesystem changes. It doesn't
    entirely revert the changes to this single file; it leaves the new
    '#include' directive, because there's no need to back that out and
    later put it back in.
---
 path_utility_test.cpp | 17 +++++------------
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/path_utility_test.cpp b/path_utility_test.cpp
index b4e340d..fd7c73a 100644
--- a/path_utility_test.cpp
+++ b/path_utility_test.cpp
@@ -302,18 +302,11 @@ void test_unique_filepath_with_ludicrous_filenames()
     // called by unique_filepath() here, adding that extension to ".."
     // yields "...", which is forbidden by msw, but allowed (although
     // of course discouraged) by posix.
-    if(running_under_wine())
-        {
-        std::cout << "TEST SKIPPED DUE TO wine-5.0.3 DEFECT" << std::endl;
-        }
-    else
-        {
-        LMI_TEST_THROW
-            (unique_filepath(fs::path(".."), "..")
-            ,fs::filesystem_error
-            ,""
-            );
-        }
+    LMI_TEST_THROW
+        (unique_filepath(fs::path(".."), "..")
+        ,fs::filesystem_error
+        ,""
+        );
 #endif // defined LMI_MSW
 }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]