1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/testsuite/unittests/wscript
Andreas Schneider 1de4390353 unittests: Do not install the test_dummy rpc module
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12879

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Alexander Bokovoy <ab@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Wed Jul  5 22:21:06 CEST 2017 on sn-devel-144
2017-07-05 22:21:06 +02:00

39 lines
1.1 KiB
Python

#!/usr/bin/env python
import os
def configure(conf):
return
def build(bld):
bld.SAMBA_BINARY('test_krb5samba',
source='test_krb5_samba.c',
deps='krb5samba cmocka',
install=False)
bld.SAMBA_BINARY('test_sambafs_srv_pipe',
source='test_sambafs_srv_pipe.c',
deps='''
RPC_SERVER
RPC_SAMR
cmocka
''',
install=False)
bld.SAMBA_BINARY('test_lib_util_modules',
source='test_lib_util_modules.c',
deps='''
samba-modules
cmocka
''',
install=False)
bld.SAMBA_MODULE('rpc_test_dummy_module',
source='rpc_test_dummy_module.c',
deps='ndr',
subsystem='rpc',
allow_undefined_symbols=True,
init_function='',
internal_module=False,
install=False)