Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to the

Windows GDI directly and thus does not need a DISPLAY environment variable.

Thanks Jason Tishler.
This commit is contained in:
Brett Cannon 2004-11-24 03:01:36 +00:00
parent 4c79a83e0c
commit 3684c8771e
1 changed files with 3 additions and 1 deletions

View File

@ -129,7 +129,9 @@ class TclTest(unittest.TestCase):
import os
old_display = None
import sys
if sys.platform.startswith('win') or sys.platform.startswith('darwin'):
if (sys.platform.startswith('win') or
sys.platform.startswith('darwin') or
sys.platform.startswith('cygwin')):
return # no failure possible on windows?
if 'DISPLAY' in os.environ:
old_display = os.environ['DISPLAY']