if count == 0 or count - cnt > 0:
stderr = cp.sub('', stderr, count=count - cnt)
- for pattern in ('exception', 'error', 'warning', 'fatal', 'traceback',
- 'fault', 'crash(?:ed)?', 'abort(?:ed)'):
- cp = re.compile(r'\b{}\b'.format(pattern), re.IGNORECASE | re.MULTILINE)
+ patterns = [ r'\b{}\b'.format(x) for x in
+ ('exception', 'error', 'warning', 'fatal', 'traceback',
+ 'fault', 'crash(?:ed)?', 'abort(?:ed)',
+ 'uninitiali[zs]ed') ]
+ patterns += ['^==[0-9]+== ']
+ for pattern in patterns:
+ cp = re.compile(pattern, re.IGNORECASE | re.MULTILINE)
hit = cp.search(stderr)
if hit:
raise AssertionError('Suspicious output to stderr (matched "%s")' % hit.group(0))
import filecmp
import errno
from tempfile import NamedTemporaryFile
-from util import wait_for_mount, umount, cleanup
+from util import wait_for_mount, umount, cleanup, base_cmdline
from os.path import join as pjoin
basename = pjoin(os.path.dirname(__file__), '..')
@pytest.mark.parametrize("name", ('hello', 'hello_ll'))
def test_hello(tmpdir, name):
mnt_dir = str(tmpdir)
- cmdline = [os.path.join(basename, 'example', name),
- '-f', mnt_dir ]
+ cmdline = base_cmdline + \
+ [ pjoin(basename, 'example', name),
+ '-f', mnt_dir ]
if name == 'hello_ll':
# supports single-threading only
cmdline.append('-s')
mnt_dir = str(tmpdir.mkdir('mnt'))
src_dir = str(tmpdir.mkdir('src'))
- cmdline = [pjoin(basename, 'example', 'fuse_lo-plus'),
+ cmdline = base_cmdline + \
+ [ pjoin(basename, 'example', 'fuse_lo-plus'),
'-f', '-s', mnt_dir ]
mount_process = subprocess.Popen(cmdline)
try:
mnt_dir = str(tmpdir.mkdir('mnt'))
src_dir = str(tmpdir.mkdir('src'))
- cmdline = [pjoin(basename, 'example', name),
- '-f', '-o' , 'use_ino,readdir_ino,kernel_cache',
+ cmdline = base_cmdline + \
+ [ pjoin(basename, 'example', name),
+ '-f', '-o', 'use_ino,readdir_ino,kernel_cache',
mnt_dir ]
mount_process = subprocess.Popen(cmdline)
try:
def test_fioc(tmpdir):
mnt_dir = str(tmpdir)
testfile = pjoin(mnt_dir, 'fioc')
- cmdline = [pjoin(basename, 'example', 'fioc'),
- '-f', mnt_dir ]
+ cmdline = base_cmdline + \
+ [pjoin(basename, 'example', 'fioc'), '-f', mnt_dir ]
mount_process = subprocess.Popen(cmdline)
try:
wait_for_mount(mount_process, mnt_dir)
- base_cmd = [ pjoin(basename, 'example', 'fioclient'),
- testfile ]
- assert subprocess.check_output(base_cmd) == b'0\n'
+ cmdline = base_cmdline + \
+ [ pjoin(basename, 'example', 'fioclient'),
+ testfile ]
+ assert subprocess.check_output(cmdline) == b'0\n'
with open(testfile, 'wb') as fh:
fh.write(b'foobar')
- assert subprocess.check_output(base_cmd) == b'6\n'
- subprocess.check_call(base_cmd + [ '3' ])
+ assert subprocess.check_output(cmdline) == b'6\n'
+ subprocess.check_call(cmdline + [ '3' ])
with open(testfile, 'rb') as fh:
assert fh.read()== b'foo'
except:
def test_fsel(tmpdir):
mnt_dir = str(tmpdir)
- cmdline = [pjoin(basename, 'example', 'fsel'),
+ cmdline = base_cmdline + [pjoin(basename, 'example', 'fsel'),
'-f', mnt_dir ]
mount_process = subprocess.Popen(cmdline)
try:
wait_for_mount(mount_process, mnt_dir)
- cmdline = [ pjoin(basename, 'example', 'fselclient') ]
+ cmdline = base_cmdline + \
+ [ pjoin(basename, 'example', 'fselclient') ]
subprocess.check_call(cmdline, cwd=mnt_dir)
except:
cleanup(mnt_dir)
import subprocess
import os
-from util import wait_for_mount, umount, cleanup
+from util import wait_for_mount, umount, cleanup, base_cmdline
basename = os.path.join(os.path.dirname(__file__), '..')
mnt_dir = str(tmpdir.mkdir('mnt'))
src_dir = str(tmpdir.mkdir('src'))
- cmdline = [ os.path.join(basename, 'example', 'fusexmp_fh'),
+ cmdline = base_cmdline + \
+ [ os.path.join(basename, 'example', 'fusexmp_fh'),
'-f', '-o' , 'use_ino,readdir_ino,kernel_cache',
mnt_dir ]
mount_process = subprocess.Popen(cmdline)