mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
2c745cfac5
Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Pair-Programmed-With: Jose A. Rivera <jarrpa@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Tue Sep 19 09:36:40 CEST 2017 on sn-devel-144
43 lines
799 B
Python
43 lines
799 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_MODULE('TORTURE_SMB2',
|
|
source='''
|
|
acls.c
|
|
compound.c
|
|
connect.c
|
|
create.c
|
|
credits.c
|
|
delete-on-close.c
|
|
dir.c
|
|
dosmode.c
|
|
durable_open.c
|
|
durable_v2_open.c
|
|
getinfo.c
|
|
ioctl.c
|
|
lease.c
|
|
lease_break_handler.c
|
|
lock.c
|
|
maxfid.c
|
|
maxwrite.c
|
|
notify.c
|
|
notify_disabled.c
|
|
oplock.c
|
|
read.c
|
|
rename.c
|
|
replay.c
|
|
scan.c
|
|
session.c
|
|
setinfo.c
|
|
sharemode.c
|
|
smb2.c
|
|
streams.c
|
|
util.c
|
|
''',
|
|
subsystem='smbtorture',
|
|
deps='LIBCLI_SMB2 POPT_CREDENTIALS torture NDR_IOCTL',
|
|
internal_module=True,
|
|
autoproto='proto.h',
|
|
init_function='torture_smb2_init'
|
|
)
|
|
|