diff options
author | Andreas Schneider <asn@samba.org> | 2017-02-01 15:53:44 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2017-02-13 14:17:39 +0100 |
commit | 85d5b4339237a12d369c3522dbb44e98fd3a6c54 (patch) | |
tree | aa6678617590b86c15eae835f2e71c5e3e6f63bb /testsuite | |
parent | 44ee31675afd277d429cb246525741110f8fceec (diff) | |
download | samba-85d5b4339237a12d369c3522dbb44e98fd3a6c54.tar.gz |
waf: Do not install the unit test binary for krb5samba
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12552
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Mon Feb 13 14:17:39 CET 2017 on sn-devel-144
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/unittests/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/unittests/wscript b/testsuite/unittests/wscript index ea4af07799f..e2569513d49 100644 --- a/testsuite/unittests/wscript +++ b/testsuite/unittests/wscript @@ -12,4 +12,5 @@ def build(bld): if bld.CONFIG_SET('HAVE_CMOCKA'): bld.SAMBA_BINARY('test_krb5samba', source='test_krb5_samba.c', - deps='krb5samba cmocka') + deps='krb5samba cmocka', + install=False) |