From f3a166d799f9c86ffbbd5539de8e9faf314d7bcd Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sat, 23 Jun 2012 21:32:36 +0200 Subject: [PATCH] Add debug output to test_shutil --- Lib/test/test_shutil.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index a830935a009..455065f71b1 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -156,6 +156,8 @@ class TestShutil(unittest.TestCase): # FUSE experienced a failure earlier in the process # at os.listdir. The first failure may legally # be either. + if support.verbose: + print("onerror [%d]: %r" % (self.errorState, (func, arg, exc[1]))) if 0 <= self.errorState < 2: if func is os.unlink: self.assertIn(arg, [self.child_file_path, self.child_dir_path])