testsuite: Remove print statements
authorEdward Hervey <edward.hervey@collabora.co.uk>
Thu, 11 Aug 2011 14:28:14 +0000 (16:28 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Thu, 11 Aug 2011 14:28:14 +0000 (16:28 +0200)
bindings/python/testsuite/common.py
bindings/python/testsuite/runtests.py

index afe8581..8fc3e11 100644 (file)
@@ -96,7 +96,6 @@ class TestCase(unittest.TestCase):
             objs = [o for o in gc.get_objects() if isinstance(o, c)]
             new.extend([o for o in objs if o not in self._tracked[c]])
 
-        print new
         self.failIf(new, new)
         #self.failIf(new, ["%r:%d" % (type(o), id(o)) for o in new])
         del self._tracked
index 00b83ee..b648496 100644 (file)
@@ -11,7 +11,6 @@ def gettestnames(which):
     if not which:
         dir = os.path.split(os.path.abspath(__file__))[0]
         which = [os.path.basename(p) for p in glob.glob('%s/test_*.py' % dir)]
-        print which
 
     names = map(lambda x: x[:-3], which)
     for f in SKIP_FILES: