mirror of
https://github.com/samba-team/samba.git
synced 2025-02-19 21:57:57 +03:00
output in the testsuite rather than just True or False for a set of tests. The aim is to use this for: * known failure lists (run all tests and detect tests that started working or started failing). This would allow us to get rid of the RPC-SAMBA3-* tests * nicer torture output * simplification of the testsuite system * compatibility with other unit testing systems * easier usage of smbtorture (being able to run one test and automatically set up the environment for that) This is still a work-in-progress; expect more updates over the next couple of days.
23 lines
418 B
Makefile
23 lines
418 B
Makefile
|
|
#################################
|
|
# Start SUBSYSTEM TORTURE_SMB2
|
|
[MODULE::TORTURE_SMB2]
|
|
SUBSYSTEM = torture
|
|
INIT_FUNCTION = torture_smb2_init
|
|
PRIVATE_PROTO_HEADER = \
|
|
proto.h
|
|
OBJ_FILES = \
|
|
connect.o \
|
|
scan.o \
|
|
util.o \
|
|
getinfo.o \
|
|
setinfo.o \
|
|
find.o \
|
|
lock.o \
|
|
notify.o \
|
|
smb2.o
|
|
PUBLIC_DEPENDENCIES = \
|
|
LIBCLI_SMB2 POPT_CREDENTIALS
|
|
# End SUBSYSTEM TORTURE_SMB2
|
|
#################################
|