aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-02 20:34:31 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-02 20:34:31 -0700
commit9620fa7954070b9219fa0fda8d9861f07ccdacf0 (patch)
tree6a58f2a6f5a98944f1354e012736c71386c6a73b /test
parenta1e1e8cdc4b1ac3a866714ce29cd12eacbe49b46 (diff)
Run hello_ll single-threaded explicitly.
Diffstat (limited to 'test')
-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)