aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/test_examples.py3
1 files changed, 3 insertions, 0 deletions
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)