Run tests under valgrind when available.
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 3 Oct 2016 05:31:13 +0000 (22:31 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 3 Oct 2016 05:39:28 +0000 (22:39 -0700)
Fixes #50.

.travis.yml
test/conftest.py
test/test_examples.py
test/test_fuse.py
test/util.py

index b90c8bf0798047fbd7c560f282c1d1f120d98350..6d2f31364f98ab6cbe9e057307a7475400c7a3c8 100644 (file)
@@ -16,6 +16,7 @@ addons:
     packages:
     - doxygen
     - libtool
+    - valgrind
     - automake
     - autoconf
     - gcc-6
@@ -23,6 +24,8 @@ install:
     - sudo python -m pip install pytest
 script:
     - $CC --version
+    - libtool --version
+    - valgrind --version
     - ./makeconf.sh
     - ./configure
     - CFLAGS="-fsanitize=address,undefined -g -O1 -Wall -Werror" make
index 0da2f4b584bccbc20535d30dd3489664fad24b23..70cd0c62d6a35b506099fefc779928a79e8c8b11 100644 (file)
@@ -35,9 +35,13 @@ def check_test_output(capfd):
         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))
index 0acce195fedccbbfeff34a5741c3820da19c61e1..5ddc86069b34f03547d473716ef190865d472b68 100755 (executable)
@@ -14,7 +14,7 @@ import shutil
 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__), '..')
@@ -30,8 +30,9 @@ def name_generator(__ctr=[0]):
 @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')
@@ -58,7 +59,8 @@ def test_fuse_lo_plus(tmpdir):
     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:
@@ -90,8 +92,9 @@ def test_fusexmp_fh(tmpdir, name):
     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:
@@ -121,19 +124,20 @@ def test_fusexmp_fh(tmpdir, name):
 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:
@@ -144,12 +148,13 @@ def test_fioc(tmpdir):
 
 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)
index bbba6e060b9a0b5c1ea86e69da2412ec04abf25f..3c60d805023eb6623d96f4028835bb33b4db345a 100755 (executable)
@@ -7,7 +7,7 @@ if __name__ == '__main__':
 
 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__), '..')
 
@@ -15,7 +15,8 @@ def test_fuse(tmpdir):
     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)
index 48ec995e6388dc0d13c6b89e2264e4acd096f675..5f2f3e0ec696e1fa029d2e92f7d8c8ccf1d9569a 100644 (file)
@@ -36,3 +36,16 @@ def umount(mount_process, mnt_dir):
         time.sleep(0.1)
         elapsed += 0.1
     pytest.fail('mount process did not terminate')
+
+
+# If valgrind and libtool are available, use them
+def has_program(name):
+    return subprocess.call([name, '--version'],
+                           stdout=subprocess.DEVNULL,
+                           stderr=subprocess.DEVNULL) == 0
+
+if has_program('valgrind') and has_program('libtool'):
+    base_cmdline = [ 'libtool', '--mode=execute',
+                     'valgrind', '-q', '--' ]
+else:
+    base_cmdline = []