diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-03-20 12:02:30 +0100 |
---|---|---|
committer | Bernd Schubert <bschubert@ddn.com> | 2024-03-20 12:37:17 +0100 |
commit | 0d90a90b066397fcbc20188e34badc9852403ea9 (patch) | |
tree | c6474ffb9875699ddb6d95ed9f8b392669adad7e /test/test_ctests.py | |
parent | e48c71d445f8b5557f45974eb0fcf5130b1e7b20 (diff) | |
download | libfuse-0d90a90b066397fcbc20188e34badc9852403ea9.tar.gz |
/test_ctests / test_notify1: Print cmdline on failure
Tests sometimes fail with
pytest.fail('file system process terminated prematurely')
And it is not clear what actually happens.
Diffstat (limited to 'test/test_ctests.py')
-rw-r--r-- | test/test_ctests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_ctests.py b/test/test_ctests.py index c0afe3d..55db156 100644 --- a/test/test_ctests.py +++ b/test/test_ctests.py @@ -75,6 +75,7 @@ def test_notify1(tmpdir, name, notify, output_checker): else: assert read1 == read2 except: + print("Failure in notify test: '" + str(cmdline) + "'") cleanup(mount_process, mnt_dir) raise else: |