mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
8a58a48f86
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Fri Jul 10 09:35:13 CEST 2015 on sn-devel-104
27 lines
592 B
Python
27 lines
592 B
Python
#!/usr/bin/env python
|
|
|
|
names = ['testsmbc',
|
|
'testacl',
|
|
'testacl2',
|
|
'testacl3',
|
|
'testbrowse',
|
|
'testbrowse2',
|
|
'testnotify',
|
|
'teststat',
|
|
'teststat2',
|
|
'teststat3',
|
|
'teststatvfs',
|
|
'testfstatvfs',
|
|
'testtruncate',
|
|
'testchmod',
|
|
'testutime',
|
|
'testread',
|
|
'testwrite',
|
|
'testctx']
|
|
|
|
for name in names:
|
|
bld.SAMBA_BINARY(name,
|
|
source='%s.c' % name,
|
|
deps='popt smbclient',
|
|
install=False)
|