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

Lib/test/regrtest.py
Misc/NEWS

index b1fd3bb9636ec8ecc5d99fcb85c8e51a4f994c0e..c5f19ad9b2de1a47a0d41007b89d636e90edc470 100755 (executable)
@@ -1470,7 +1470,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 a4b32ae3e03cd05838c0464fd1f6fdd37c980917..ee75bdad2c73755cb5632d2222824d14d6b41cf0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -319,6 +319,9 @@ Build
 Tests
 -----
 
+- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
+  platforms. Patch by Nadeem Vawda.
+
 - Issue #7108: Fix test_commands to not fail when special attributes ('@'
   or '.') appear in 'ls -l' output.