diff options
author | Bernd Schubert <bschubert@ddn.com> | 2022-03-22 19:55:36 +0100 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2023-01-13 10:21:42 +0000 |
commit | 856c683c361cb1f3a176df331cbbac76c34402e7 (patch) | |
tree | 8a1b461ff5f3eded9d0823b220e03290dc71b049 /test | |
parent | aad5c3a44d4386b2128b956446b2c6295a4c28ad (diff) | |
download | libfuse-856c683c361cb1f3a176df331cbbac76c34402e7.tar.gz |
passthrough_hp: Add options for clone_fd, max_threads, daemonize
This is useful for benchmarking.
Note: This changes behavior - passthrough_hp runs in background by default
now.
Diffstat (limited to 'test')
-rwxr-xr-x | test/test_examples.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_examples.py b/test/test_examples.py index cfce57c..c63ac11 100755 --- a/test/test_examples.py +++ b/test/test_examples.py @@ -197,6 +197,8 @@ def test_passthrough_hp(short_tmpdir, cache, output_checker): [ pjoin(basename, 'example', 'passthrough_hp'), src_dir, mnt_dir ] + cmdline.append('--foreground') + if not cache: cmdline.append('--nocache') |