aboutsummaryrefslogtreecommitdiff
path: root/test/util.py
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-01-05 09:37:00 -0800
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-01-12 15:19:04 -0800
commit9f96db71252fc66b72c433e2ca0d49e031c6a5fd (patch)
tree494132dae14dba3de18a9013f2299cfc37cceda5 /test/util.py
parent3006686b536942f6f96675e3d12b793087e78e6a (diff)
Added experimental support for building with Meson+Ninja
Diffstat (limited to 'test/util.py')
-rw-r--r--test/util.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/util.py b/test/util.py
index 6bba9e2..48670bd 100644
--- a/test/util.py
+++ b/test/util.py
@@ -105,7 +105,7 @@ def fuse_test_marker():
return pytest.mark.uses_fuse()
-# If valgrind and libtool are available, use them
+# If valgrind is available, use it
def has_program(name):
try:
ret = subprocess.call([name, '--version'],
@@ -115,9 +115,8 @@ def has_program(name):
return False
return ret == 0
-if has_program('valgrind') and has_program('libtool'):
- base_cmdline = [ 'libtool', '--mode=execute',
- 'valgrind', '-q', '--' ]
+if has_program('valgrind'):
+ base_cmdline = [ 'valgrind', '-q', '--' ]
else:
base_cmdline = []