##// END OF EJS Templates
Remove check for GTK in tests, so that the default encoding remains ascii, and Unicode failures can be resolved.
Robert Kern -
Show More
@@ -105,8 +105,6 b" have['zope.interface'] = test_for('zope.interface')"
105 have['twisted'] = test_for('twisted')
105 have['twisted'] = test_for('twisted')
106 have['foolscap'] = test_for('foolscap')
106 have['foolscap'] = test_for('foolscap')
107 have['pexpect'] = test_for('pexpect')
107 have['pexpect'] = test_for('pexpect')
108 have['gtk'] = test_for('gtk')
109 have['gobject'] = test_for('gobject')
110
108
111 #-----------------------------------------------------------------------------
109 #-----------------------------------------------------------------------------
112 # Functions and classes
110 # Functions and classes
@@ -171,9 +169,6 b' def make_exclude():'
171 if not have['wx']:
169 if not have['wx']:
172 exclusions.append(ipjoin('lib', 'inputhookwx'))
170 exclusions.append(ipjoin('lib', 'inputhookwx'))
173
171
174 if not have['gtk'] or not have['gobject']:
175 exclusions.append(ipjoin('lib', 'inputhookgtk'))
176
177 # These have to be skipped on win32 because the use echo, rm, cd, etc.
172 # These have to be skipped on win32 because the use echo, rm, cd, etc.
178 # See ticket https://bugs.launchpad.net/bugs/366982
173 # See ticket https://bugs.launchpad.net/bugs/366982
179 if sys.platform == 'win32':
174 if sys.platform == 'win32':
General Comments 0
You need to be logged in to leave comments. Login now