testinggtk r239 - trunk/tests



Author: bjornl
Date: Mon Jun 23 21:04:54 2008
New Revision: 239
URL: http://svn.gnome.org/viewvc/testinggtk?rev=239&view=rev

Log:
Disabled infinite loop test

Modified:
   trunk/tests/test_toolitem.py

Modified: trunk/tests/test_toolitem.py
==============================================================================
--- trunk/tests/test_toolitem.py	(original)
+++ trunk/tests/test_toolitem.py	Mon Jun 23 21:04:54 2008
@@ -2,6 +2,7 @@
 Tests for the ``gtk.ToolItem`` class.
 '''
 import gtk
+import utils
 
 def test_toolbar_style():
     '''
@@ -47,3 +48,17 @@
     ti.set_proxy_menu_item('bar', mi)
     assert not ti.get_proxy_menu_item('foo')
     assert ti.get_proxy_menu_item('bar') == mi
+
+# utils pass_on_warnings
+def test_tool_item_loop():
+    '''
+    Disabled due to infinite loop.
+
+    :bug: #539807
+    '''
+    # ti1 = gtk.ToolItem()
+    # ti2 = gtk.ToolItem()
+    # ti3 = gtk.ToolItem()
+    # ti1.add(ti2)
+    # ti2.add(ti3)
+    # ti3.add(ti1)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]