From e620d1070192ef85f2520e9f60cdbde2adb4d465 Mon Sep 17 00:00:00 2001 From: Ross Lagerwall Date: Sat, 9 Apr 2011 19:30:03 +0200 Subject: [PATCH] Issue #11719: Fix message about unexpected test_msilib skip. Patch by Nadeem Vawda. --- Lib/test/regrtest.py | 2 +- Misc/NEWS | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 71cc866e52f..98d68bd1b48 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -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) diff --git a/Misc/NEWS b/Misc/NEWS index 895e50d6fa4..5307fe86621 100644 --- 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.