]> granicus.if.org Git - python/commitdiff
Added additional output to help diagnose buildbot failures.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 5 May 2011 20:23:42 +0000 (21:23 +0100)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 5 May 2011 20:23:42 +0000 (21:23 +0100)
Lib/test/test_logging.py

index fe42594030c7d0fa179ce4ac421b90346596d913..ff9eb66688c1d225d76f9407b3011e50a9d8bbd9 100644 (file)
@@ -3494,9 +3494,19 @@ class TimedRotatingFileHandlerTest(BaseFileTest):
         earlier = now - datetime.timedelta(seconds=2)
         fn1 = self.fn + prevsec.strftime(".%Y-%m-%d_%H-%M-%S")
         fn2 = self.fn + earlier.strftime(".%Y-%m-%d_%H-%M-%S")
-        self.assertTrue(os.path.exists(fn1) or
-                        os.path.exists(fn2),
-                        msg="Neither exists: %s nor %s" % (fn1, fn2))
+        success = os.path.exists(fn1) or os.path.exists(fn2)
+        if not success:
+            # print additional diagnostic information
+            print('Neither %s nor %s exists' % (fn1, fn2), file=sys.stderr)
+            dirname = os.path.dirname(fn1)
+            files = os.listdir(dirname)
+            files = [f for f in files if f.startswith('test_logging-2-')]
+            print('matching files: %s' % files, file=sys.stderr)
+        self.assertTrue(success)
+        for fn in (fn1, fn2):
+            if os.path.exists(fn):
+                self.rmfiles.append(fn)
+
 
     def test_invalid(self):
         assertRaises = self.assertRaises