1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00
Volker Lendecke 6f4e6fc631 test: Add a test for background_job_send crash
I haven't figured out how to properly add a crashing test to
"knownfail", so this is added after the fix.

Signed-off-by: Volker Lendecke <vl@samba.org>
2021-04-01 19:32:36 +00:00

46 lines
1.4 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',
for_selftest=True)
bld.SAMBA_BINARY('test_sambafs_srv_pipe',
source='test_sambafs_srv_pipe.c',
deps='''
RPC_SERVER
RPC_SAMR
cmocka
''',
for_selftest=True)
bld.SAMBA_BINARY('test_lib_util_modules',
source='test_lib_util_modules.c',
deps='''
samba-modules
cmocka
''',
for_selftest=True)
bld.SAMBA_BINARY('test_background_send',
source='test_background_send.c',
deps='''
samba3core
''',
for_selftest=True)
bld.SAMBA_MODULE('rpc_test_dummy_module',
source='rpc_test_dummy_module.c',
deps='ndr smbd_base',
subsystem='rpc',
allow_undefined_symbols=True,
init_function='',
internal_module=False,
install=False)