]> granicus.if.org Git - python/commitdiff
Issue #11719: Fix message about unexpected test_msilib skip.
authorRoss Lagerwall <rosslagerwall@gmail.com>
Sat, 9 Apr 2011 17:30:03 +0000 (19:30 +0200)
committerRoss Lagerwall <rosslagerwall@gmail.com>
Sat, 9 Apr 2011 17:30:03 +0000 (19:30 +0200)
Patch by Nadeem Vawda.

Lib/test/regrtest.py
Misc/NEWS

index 71cc866e52f0d2d4519322ca322ac308a4b662f3..98d68bd1b483ba81f5061e24d4e4f7a23b58ade5 100755 (executable)
@@ -1239,7 +1239,7 @@ class _ExpectedSkips:
                 # is distributed with Python
                 WIN_ONLY = ["test_unicode_file", "test_winreg",
                             "test_winsound", "test_startfile",
-                            "test_sqlite"]
+                            "test_sqlite", "test_msilib"]
                 for skip in WIN_ONLY:
                     self.expected.add(skip)
 
index 895e50d6fa416004c7e3a9db06f2d27c6cf9929d..5307fe86621f3f4ea82bfa56b9a999e2f9fd80e2 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -285,6 +285,9 @@ Build
 Tests
 -----
 
+- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
+  platforms. Patch by Nadeem Vawda.
+
 - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a
   false positive if the last directory in the path is inaccessible.