summaryrefslogtreecommitdiffstats
path: root/tests/test_gio.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-04-08 17:27:48 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-04-08 17:27:48 +0000
commit09dbce7d1a3a5591d85d061da40c462ee1d2f534 (patch)
treecc594aa1c97712cdc0c5b929d43b2c39334780b0 /tests/test_gio.py
parentdb07def4e878b7237a61d4ac73a861d7422a5578 (diff)
downloadpygobject-09dbce7d1a3a5591d85d061da40c462ee1d2f534.tar.gz
pygobject-09dbce7d1a3a5591d85d061da40c462ee1d2f534.tar.xz
pygobject-09dbce7d1a3a5591d85d061da40c462ee1d2f534.zip
Disable these tests until we can figure why they freeze during make check.
2008-04-08 Johan Dahlin <johan@gnome.org> * tests/test_gio.py (TestOutputStream.testWriteAsyncError): (TestInputStream._testCloseAsync.callback): Disable these tests until we can figure why they freeze during make check. svn path=/trunk/; revision=769
Diffstat (limited to 'tests/test_gio.py')
-rw-r--r--tests/test_gio.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_gio.py b/tests/test_gio.py
index b70f9c2..5c1acdf 100644
--- a/tests/test_gio.py
+++ b/tests/test_gio.py
@@ -114,7 +114,8 @@ class TestInputStream(unittest.TestCase):
self.assertEquals(self.count, 2)
- def testCloseAsync(self):
+ # FIXME: this makes 'make check' freeze
+ def _testCloseAsync(self):
def callback(stream, result):
try:
self.failUnless(stream.close_finish(result))
@@ -172,7 +173,8 @@ class TestOutputStream(unittest.TestCase):
loop.run()
- def testCloseAsync(self):
+ # FIXME: this makes 'make check' freeze
+ def _testCloseAsync(self):
def callback(stream, result):
try:
self.failUnless(stream.close_finish(result))