diff options
author | Daniel Mack <github@zonque.org> | 2016-01-07 12:02:38 +0100 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2016-01-07 12:02:38 +0100 |
commit | a2e9fd6233183b3dc439f9411709c62d11bfdc1c (patch) | |
tree | e841b163e375504c29a14bdb63da19c99fbb2af0 | |
parent | d2b8497d3cec5c454e407b681bbfe0b0b9415c70 (diff) | |
parent | 70fd79177f5e802a5a65e8b48c79397185725bc9 (diff) |
Merge pull request #2283 from evverx/update-valgrind-tests
build-sys: valgrind-tests: exclude python scripts too
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 3516b50385..6dd547cf9e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6285,10 +6285,10 @@ install-tree: all tree $(abs_srcdir)/install-tree # Let's run all tests of the test suite, but under valgrind. Let's -# exclude the one perl script we have in there +# exclude perl/python/shell scripts we have in there .PHONY: valgrind-tests valgrind-tests: $(TESTS) - $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \ + $(AM_V_GEN)for f in $(filter-out %.pl %.py, $^); do \ if file $$f | grep -q shell; then \ echo -e "$${x}Skipping non-binary $$f"; else \ echo -e "$${x}Running $$f"; \ |