From: Nikolaus Rath Date: Mon, 3 Oct 2016 03:34:31 +0000 (-0700) Subject: Run hello_ll single-threaded explicitly. X-Git-Tag: fuse-3.0.0pre0~14 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9620fa7954070b9219fa0fda8d9861f07ccdacf0;p=qemu-gpiodev%2Flibfuse.git Run hello_ll single-threaded explicitly. --- diff --git a/test/test_examples.py b/test/test_examples.py index 31d2fae..14cac4a 100755 --- a/test/test_examples.py +++ b/test/test_examples.py @@ -31,6 +31,9 @@ def test_hello(tmpdir, name): mnt_dir = str(tmpdir) cmdline = [os.path.join(basename, 'example', name), '-f', mnt_dir ] + if name == 'hello_ll': + # supports single-threading only + cmdline.append('-s') mount_process = subprocess.Popen(cmdline) try: wait_for_mount(mount_process, mnt_dir)