Commit f3a166d7 authored by Antoine Pitrou's avatar Antoine Pitrou

Add debug output to test_shutil

parent 2f8a75c7
...@@ -156,6 +156,8 @@ class TestShutil(unittest.TestCase): ...@@ -156,6 +156,8 @@ class TestShutil(unittest.TestCase):
# FUSE experienced a failure earlier in the process # FUSE experienced a failure earlier in the process
# at os.listdir. The first failure may legally # at os.listdir. The first failure may legally
# be either. # be either.
if support.verbose:
print("onerror [%d]: %r" % (self.errorState, (func, arg, exc[1])))
if 0 <= self.errorState < 2: if 0 <= self.errorState < 2:
if func is os.unlink: if func is os.unlink:
self.assertIn(arg, [self.child_file_path, self.child_dir_path]) self.assertIn(arg, [self.child_file_path, self.child_dir_path])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment