mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
d252d23ff1
- The smblsa calls had to be commented out for now and should be fixed later, but they aren't crucial to the test. - The first two tests from RAW-ACLS were already ported to torture_smb2_setinfo() and test_create_acl(). Modifications were made similar to the RAW-ACLS changes. - test_sd_get_set() was ported, but does not pass against XP or Vista; it is not added to the SMB2-ACLS test suite. - printf -> torture_comment / torture_warning / torture_result
34 lines
680 B
Makefile
34 lines
680 B
Makefile
|
|
#################################
|
|
# Start SUBSYSTEM TORTURE_SMB2
|
|
[MODULE::TORTURE_SMB2]
|
|
SUBSYSTEM = smbtorture
|
|
OUTPUT_TYPE = MERGED_OBJ
|
|
INIT_FUNCTION = torture_smb2_init
|
|
PRIVATE_DEPENDENCIES = \
|
|
LIBCLI_SMB2 POPT_CREDENTIALS torture
|
|
# End SUBSYSTEM TORTURE_SMB2
|
|
#################################
|
|
|
|
TORTURE_SMB2_OBJ_FILES = $(addprefix $(torturesrcdir)/smb2/, \
|
|
connect.o \
|
|
scan.o \
|
|
util.o \
|
|
getinfo.o \
|
|
setinfo.o \
|
|
lock.o \
|
|
notify.o \
|
|
smb2.o \
|
|
durable_open.o \
|
|
oplock.o \
|
|
dir.o \
|
|
lease.o \
|
|
create.o \
|
|
acls.o \
|
|
read.o \
|
|
compound.o \
|
|
streams.o)
|
|
|
|
|
|
$(eval $(call proto_header_template,$(torturesrcdir)/smb2/proto.h,$(TORTURE_SMB2_OBJ_FILES:.o=.c)))
|