This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master
in repository gssproxy.
The following commit(s) were added to refs/heads/master by this push:
new f91e23f Permit testing sans Valgrind
f91e23f is described below
commit f91e23f896ec3cb0afe60485fc7ab72b63011281
Author: Alexander Scheel <ascheel(a)redhat.com>
AuthorDate: Mon Mar 18 17:26:00 2019 -0400
Permit testing sans Valgrind
Only run the check_exec on Valgrind when present as the prefix to the
--valgrind-cmd argument. This lets us run the test suite without
Valgrind via:
./tests/runtests.py --valgrind-cmd ""
Signed-off-by: Alexander Scheel <ascheel(a)redhat.com>
Reviewed-by: Robbie Harwood <rharwood(a)redhat.com>
Merges: #243
---
tests/runtests.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/runtests.py b/tests/runtests.py
index 4150543..9cd546f 100755
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -52,6 +52,9 @@ def runtests_main(testfiles):
for e in ["bash", "pkg-config", "zcat", "kinit", "krb5kdc", "kdb5_util",
"kadmin.local", "kdb5_ldap_util", "slapd", "slapadd",
"ldapmodify", "valgrind"]:
+ if e == "valgrind" and not args['valgrind_cmd'].startswith('valgrind'):
+ continue
+
check_exec(e)
testdir = args['path']
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.