waf: Add missing libreplace deps to pyldb*
[samba.git] / lib / ldb / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'ldb'
4 VERSION = '1.5.1'
5
6 import sys, os
7
8 # find the buildtools directory
9 top = '.'
10 while not os.path.exists(top+'/buildtools') and len(top.split('/')) < 5:
11     top = top + '/..'
12 sys.path.insert(0, top + '/buildtools/wafsamba')
13
14 out = 'bin'
15
16 import wafsamba
17 from wafsamba import samba_dist, samba_utils
18 from waflib import Errors, Options, Logs, Context
19 import shutil
20
21 samba_dist.DIST_DIRS('''lib/ldb:. lib/replace:lib/replace lib/talloc:lib/talloc
22                         lib/tdb:lib/tdb lib/tdb:lib/tdb lib/tevent:lib/tevent
23                         third_party/popt:third_party/popt
24                         third_party/cmocka:third_party/cmocka
25                         buildtools:buildtools third_party/waf:third_party/waf''')
26
27 samba_dist.DIST_FILES('''lib/util/binsearch.h:lib/util/binsearch.h''')
28
29 def options(opt):
30     opt.BUILTIN_DEFAULT('replace')
31     opt.PRIVATE_EXTENSION_DEFAULT('ldb', noextension='ldb')
32     opt.RECURSE('lib/tdb')
33     opt.RECURSE('lib/tevent')
34     opt.RECURSE('lib/replace')
35     opt.load('python') # options for disabling pyc or pyo compilation
36
37     opt.add_option('--without-ldb-lmdb',
38                    help='disable new LMDB backend for LDB',
39                    action='store_true', dest='without_ldb_lmdb', default=False)
40
41
42 def configure(conf):
43     conf.RECURSE('lib/tdb')
44     conf.RECURSE('lib/tevent')
45
46     if conf.CHECK_FOR_THIRD_PARTY():
47         conf.RECURSE('third_party/popt')
48         conf.RECURSE('third_party/cmocka')
49     else:
50         if not conf.CHECK_POPT():
51             raise Errors.WafError('popt development packages have not been found.\nIf third_party is installed, check that it is in the proper place.')
52         else:
53             conf.define('USING_SYSTEM_POPT', 1)
54
55         if not conf.CHECK_CMOCKA():
56             raise Errors.WafError('cmocka development package have not been found.\nIf third_party is installed, check that it is in the proper place.')
57         else:
58             conf.define('USING_SYSTEM_CMOCKA', 1)
59
60     conf.RECURSE('lib/replace')
61     conf.find_program('python', var='PYTHON')
62     conf.find_program('xsltproc', var='XSLTPROC')
63     conf.load('python')
64     conf.check_python_version((2,4,2))
65     conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=not conf.env.disable_python)
66
67     # where does the default LIBDIR end up? in conf.env somewhere?
68     #
69     conf.CONFIG_PATH('LDB_MODULESDIR', conf.SUBST_ENV_VAR('MODULESDIR') + '/ldb')
70
71     conf.env.standalone_ldb = conf.IN_LAUNCH_DIR()
72
73     if not conf.env.standalone_ldb:
74         max_ldb_version = [int(x) for x in VERSION.split(".")]
75         max_ldb_version[2] = 999
76         max_ldb_version_dots = "%d.%d.%d" % tuple(max_ldb_version)
77
78         if conf.env.disable_python:
79             if conf.CHECK_BUNDLED_SYSTEM_PKG('ldb',
80                                              minversion=VERSION,
81                                              maxversion=max_ldb_version_dots,
82                                              onlyif='talloc tdb tevent',
83                                              implied_deps='replace talloc tdb tevent'):
84                 conf.define('USING_SYSTEM_LDB', 1)
85         else:
86             using_system_pyldb_util = True
87             dflt_name = 'pyldb-util' + conf.all_envs['default']['PYTHON_SO_ABI_FLAG']
88             if not conf.CHECK_BUNDLED_SYSTEM_PKG(dflt_name,
89                                                  minversion=VERSION,
90                                                  maxversion=max_ldb_version_dots,
91                                                  onlyif='talloc tdb tevent',
92                                                  implied_deps='replace talloc tdb tevent ldb'):
93                 using_system_pyldb_util = False
94
95             # We need to get a pyldb-util for all the python versions
96             # we are building for
97             if conf.env['EXTRA_PYTHON']:
98                 name = 'pyldb-util' + conf.all_envs['extrapython']['PYTHON_SO_ABI_FLAG']
99                 if not conf.CHECK_BUNDLED_SYSTEM_PKG(name,
100                                                      minversion=VERSION,
101                                                      maxversion=max_ldb_version_dots,
102                                                      onlyif='talloc tdb tevent',
103                                                      implied_deps='replace talloc tdb tevent ldb'):
104                     using_system_pyldb_util = False
105
106             if using_system_pyldb_util:
107                 conf.define('USING_SYSTEM_PYLDB_UTIL', 1)
108
109             if conf.CHECK_BUNDLED_SYSTEM_PKG('ldb',
110                                              minversion=VERSION,
111                                              maxversion=max_ldb_version_dots,
112                                              onlyif='talloc tdb tevent %s' % dflt_name,
113                                              implied_deps='replace talloc tdb tevent'):
114                 conf.define('USING_SYSTEM_LDB', 1)
115
116     if not conf.CHECK_CODE('return !(sizeof(size_t) >= 8)',
117                            "HAVE_64_BIT_SIZE_T_FOR_LMDB",
118                            execute=True,
119                            msg='Checking for a 64-bit host to '
120                            'support lmdb'):
121         Logs.warn("--without-ldb-lmdb implied as this "
122                   "host is not 64-bit")
123
124         if not conf.env.standalone_ldb and \
125            not Options.options.without_ad_dc and \
126            conf.CONFIG_GET('ENABLE_SELFTEST'):
127             Logs.warn("NOTE: Some AD DC parts of selftest will fail")
128
129         conf.env.REQUIRE_LMDB = False
130     else:
131         if conf.env.standalone_ldb:
132             if Options.options.without_ldb_lmdb:
133                 conf.env.REQUIRE_LMDB = False
134             else:
135                 conf.env.REQUIRE_LMDB = True
136         elif Options.options.without_ad_dc:
137             conf.env.REQUIRE_LMDB = False
138         else:
139             if Options.options.without_ldb_lmdb:
140                 if not Options.options.without_ad_dc and \
141                    conf.CONFIG_GET('ENABLE_SELFTEST'):
142                     raise Errors.WafError('--without-ldb-lmdb conflicts '
143                                          'with --enable-selftest while '
144                                          'building the AD DC')
145
146                 conf.env.REQUIRE_LMDB = False
147             else:
148                 conf.env.REQUIRE_LMDB = True
149
150
151     if conf.CONFIG_SET('USING_SYSTEM_LDB'):
152         v = VERSION.split('.')
153         conf.DEFINE('EXPECTED_SYSTEM_LDB_VERSION_MAJOR', int(v[0]))
154         conf.DEFINE('EXPECTED_SYSTEM_LDB_VERSION_MINOR', int(v[1]))
155         conf.DEFINE('EXPECTED_SYSTEM_LDB_VERSION_RELEASE', int(v[2]))
156
157     if conf.env.standalone_ldb:
158         conf.CHECK_XSLTPROC_MANPAGES()
159
160         # we need this for the ldap backend
161         if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'):
162             conf.env.ENABLE_LDAP_BACKEND = True
163
164         # we don't want any libraries or modules to rely on runtime
165         # resolution of symbols
166         if not sys.platform.startswith("openbsd"):
167             conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
168
169     # if lmdb support is enabled then we require lmdb
170     # is present, build the mdb back end and enable lmdb support in
171     # the tools.
172     if conf.env.REQUIRE_LMDB and \
173        not conf.CONFIG_SET('USING_SYSTEM_LDB'):
174         if not conf.CHECK_CFG(package='lmdb',
175                               args='"lmdb >= 0.9.16" --cflags --libs',
176                               msg='Checking for lmdb >= 0.9.16',
177                               mandatory=False):
178             if not conf.CHECK_CODE('''
179                     #if MDB_VERSION_MAJOR == 0 \
180                       && MDB_VERSION_MINOR <= 9 \
181                       && MDB_VERSION_PATCH < 16
182                     #error LMDB too old
183                     #endif
184                     ''',
185                     'HAVE_GOOD_LMDB_VERSION',
186                     headers='lmdb.h',
187                     msg='Checking for lmdb >= 0.9.16 via header check'):
188
189                 if conf.env.standalone_ldb:
190                     raise Errors.WafError('ldb build (unless --without-ldb-lmdb) '
191                                          'requires '
192                                          'lmdb 0.9.16 or later')
193                 elif not Options.options.without_ad_dc:
194                     raise Errors.WafError('Samba AD DC and --enable-selftest '
195                                          'requires '
196                                          'lmdb 0.9.16 or later')
197
198         if conf.CHECK_FUNCS_IN('mdb_env_create', 'lmdb', headers='lmdb.h'):
199             conf.DEFINE('HAVE_LMDB', '1')
200
201
202     conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
203
204     conf.SAMBA_CONFIG_H()
205
206     conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
207
208 def build(bld):
209     bld.RECURSE('lib/tevent')
210
211     if bld.CHECK_FOR_THIRD_PARTY():
212         bld.RECURSE('third_party/popt')
213         bld.RECURSE('third_party/cmocka')
214
215     bld.RECURSE('lib/replace')
216     bld.RECURSE('lib/tdb')
217
218     if bld.env.standalone_ldb:
219         if not 'PACKAGE_VERSION' in bld.env:
220             bld.env.PACKAGE_VERSION = VERSION
221         bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
222         private_library = False
223     else:
224         private_library = True
225     # we're not currently linking against the ldap libs, but ldb.pc.in
226     # has @LDAP_LIBS@
227     bld.env.LDAP_LIBS = ''
228
229     LDB_MAP_SRC = bld.SUBDIR('ldb_map',
230                              'ldb_map.c ldb_map_inbound.c ldb_map_outbound.c')
231
232     COMMON_SRC = bld.SUBDIR('common',
233                             '''ldb_modules.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
234                             ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c ldb_pack.c
235                             ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
236
237     bld.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
238                      init_function='ldb_ldap_init',
239                      module_init_name='ldb_init_module',
240                      deps='talloc lber ldap ldb',
241                      enabled=bld.env.ENABLE_LDAP_BACKEND,
242                      internal_module=False,
243                      subsystem='ldb')
244
245     if bld.PYTHON_BUILD_IS_ENABLED():
246         if not bld.CONFIG_SET('USING_SYSTEM_PYLDB_UTIL'):
247             for env in bld.gen_python_environments(['PKGCONFIGDIR']):
248
249                 name = bld.pyembed_libname('pyldb-util')
250                 bld.SAMBA_LIBRARY(name,
251                                   deps='replace ldb',
252                                   source='pyldb_util.c',
253                                   public_headers=('' if private_library else 'pyldb.h'),
254                                   public_headers_install=not private_library,
255                                   vnum=VERSION,
256                                   private_library=private_library,
257                                   pc_files='pyldb-util.pc',
258                                   pyembed=True,
259                                   enabled=bld.PYTHON_BUILD_IS_ENABLED(),
260                                   abi_directory='ABI',
261                                   abi_match='pyldb_*')
262
263                 if not bld.CONFIG_SET('USING_SYSTEM_LDB'):
264                     bld.SAMBA_PYTHON('pyldb', 'pyldb.c',
265                                      deps='replace ldb ' + name,
266                                      realname='ldb.so',
267                                      cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
268
269         # Do only install this file as part of the Samba build if we do not
270         # use the system libldb!
271         if not bld.CONFIG_SET('USING_SYSTEM_PYLDB_UTIL'):
272             for env in bld.gen_python_environments(['PKGCONFIGDIR']):
273                     bld.SAMBA_SCRIPT('_ldb_text.py',
274                                      pattern='_ldb_text.py',
275                                      installdir='python')
276
277                     bld.INSTALL_FILES('${PYTHONARCHDIR}', '_ldb_text.py')
278
279     if not bld.CONFIG_SET('USING_SYSTEM_LDB'):
280         if bld.is_install:
281             modules_dir = bld.EXPAND_VARIABLES('${LDB_MODULESDIR}')
282         else:
283             # when we run from the source directory, we want to use
284             # the current modules, not the installed ones
285             modules_dir = os.path.join(os.getcwd(), 'bin/modules/ldb')
286
287         abi_match = '!ldb_*module_ops !ldb_*backend_ops ldb_*'
288
289         ldb_headers = ('include/ldb.h include/ldb_errors.h '
290                        'include/ldb_module.h include/ldb_handlers.h')
291
292         bld.SAMBA_LIBRARY('ldb',
293                           COMMON_SRC + ' ' + LDB_MAP_SRC,
294                           deps='tevent LIBLDB_MAIN replace',
295                           includes='include',
296                           public_headers=('' if private_library else ldb_headers),
297                           public_headers_install=not private_library,
298                           pc_files='ldb.pc',
299                           vnum=VERSION,
300                           private_library=private_library,
301                           manpages='man/ldb.3',
302                           abi_directory='ABI',
303                           abi_match = abi_match)
304
305         # generate a include/ldb_version.h
306         def generate_ldb_version_h(t):
307             '''generate a vscript file for our public libraries'''
308
309             tgt = t.outputs[0].bldpath(t.env)
310
311             v = t.env.LDB_VERSION.split('.')
312
313             f = open(tgt, mode='w')
314             try:
315                 f.write('#define LDB_VERSION "%s"\n' % t.env.LDB_VERSION)
316                 f.write('#define LDB_VERSION_MAJOR %d\n' % int(v[0]))
317                 f.write('#define LDB_VERSION_MINOR %d\n' % int(v[1]))
318                 f.write('#define LDB_VERSION_RELEASE %d\n' % int(v[2]))
319             finally:
320                 f.close()
321             return
322         t = bld.SAMBA_GENERATOR('ldb_version.h',
323                                 rule=generate_ldb_version_h,
324                                 dep_vars=['LDB_VERSION'],
325                                 target='include/ldb_version.h',
326                                 public_headers='include/ldb_version.h',
327                                 public_headers_install=not private_library)
328         t.env.LDB_VERSION = VERSION
329
330
331         bld.SAMBA_MODULE('ldb_paged_results',
332                          'modules/paged_results.c',
333                          init_function='ldb_paged_results_init',
334                          module_init_name='ldb_init_module',
335                          internal_module=False,
336                          deps='ldb',
337                          subsystem='ldb')
338
339         bld.SAMBA_MODULE('ldb_asq',
340                          'modules/asq.c',
341                          init_function='ldb_asq_init',
342                          module_init_name='ldb_init_module',
343                          internal_module=False,
344                          deps='ldb',
345                          subsystem='ldb')
346
347         bld.SAMBA_MODULE('ldb_server_sort',
348                          'modules/sort.c',
349                          init_function='ldb_server_sort_init',
350                          internal_module=False,
351                          module_init_name='ldb_init_module',
352                          deps='ldb',
353                          subsystem='ldb')
354
355         bld.SAMBA_MODULE('ldb_paged_searches',
356                          'modules/paged_searches.c',
357                          init_function='ldb_paged_searches_init',
358                          internal_module=False,
359                          module_init_name='ldb_init_module',
360                          deps='ldb',
361                          subsystem='ldb')
362
363         bld.SAMBA_MODULE('ldb_rdn_name',
364                          'modules/rdn_name.c',
365                          init_function='ldb_rdn_name_init',
366                          internal_module=False,
367                          module_init_name='ldb_init_module',
368                          deps='ldb',
369                          subsystem='ldb')
370
371         bld.SAMBA_MODULE('ldb_sample',
372                          'tests/sample_module.c',
373                          init_function='ldb_sample_init',
374                          internal_module=False,
375                          module_init_name='ldb_init_module',
376                          deps='ldb',
377                          subsystem='ldb')
378
379         bld.SAMBA_MODULE('ldb_skel',
380                          'modules/skel.c',
381                          init_function='ldb_skel_init',
382                          internal_module=False,
383                          module_init_name='ldb_init_module',
384                          deps='ldb',
385                          subsystem='ldb')
386
387         bld.SAMBA_MODULE('ldb_sqlite3',
388                          'sqlite3/ldb_sqlite3.c',
389                          init_function='ldb_sqlite3_init',
390                          internal_module=False,
391                          module_init_name='ldb_init_module',
392                          enabled=False,
393                          deps='ldb',
394                          subsystem='ldb')
395
396         bld.SAMBA_MODULE('ldb_tdb',
397                          bld.SUBDIR('ldb_tdb',
398                                     '''ldb_tdb_init.c'''),
399                          init_function='ldb_tdb_init',
400                          module_init_name='ldb_init_module',
401                          internal_module=False,
402                          deps='ldb ldb_tdb_int ldb_key_value',
403                          subsystem='ldb')
404
405         bld.SAMBA_LIBRARY('ldb_tdb_int',
406                           bld.SUBDIR('ldb_tdb',
407                                      '''ldb_tdb_wrap.c ldb_tdb.c'''),
408                           private_library=True,
409                           deps='ldb tdb ldb_key_value ldb_tdb_err_map')
410
411         bld.SAMBA_LIBRARY('ldb_tdb_err_map',
412                           bld.SUBDIR('ldb_tdb',
413                                      '''ldb_tdb_err_map.c '''),
414                           private_library=True,
415                           deps='ldb tdb')
416
417         bld.SAMBA_LIBRARY('ldb_key_value',
418                           bld.SUBDIR('ldb_key_value',
419                                     '''ldb_kv.c ldb_kv_search.c ldb_kv_index.c
420                                     ldb_kv_cache.c'''),
421                           private_library=True,
422                           deps='tdb ldb ldb_tdb_err_map')
423
424         if bld.CONFIG_SET('HAVE_LMDB'):
425             bld.SAMBA_MODULE('ldb_mdb',
426                              bld.SUBDIR('ldb_mdb',
427                                         '''ldb_mdb_init.c'''),
428                              init_function='ldb_mdb_init',
429                              module_init_name='ldb_init_module',
430                              internal_module=False,
431                              deps='ldb ldb_key_value ldb_mdb_int',
432                              subsystem='ldb')
433
434             bld.SAMBA_LIBRARY('ldb_mdb_int',
435                               bld.SUBDIR('ldb_mdb',
436                                          '''ldb_mdb.c '''),
437                               private_library=True,
438                               deps='ldb lmdb ldb_key_value')
439             lmdb_deps = ' ldb_mdb_int'
440         else:
441             lmdb_deps = ''
442
443
444         bld.SAMBA_MODULE('ldb_ldb',
445                          bld.SUBDIR('ldb_ldb',
446                                     '''ldb_ldb.c'''),
447                          init_function='ldb_ldb_init',
448                          module_init_name='ldb_init_module',
449                          internal_module=False,
450                          deps='ldb ldb_tdb_int ldb_key_value' + lmdb_deps,
451                          subsystem='ldb')
452
453         # have a separate subsystem for common/ldb.c, so it can rebuild
454         # for install with a different -DLDB_MODULESDIR=
455         bld.SAMBA_SUBSYSTEM('LIBLDB_MAIN',
456                             'common/ldb.c',
457                             deps='tevent tdb',
458                             includes='include',
459                             cflags=['-DLDB_MODULESDIR=\"%s\"' % modules_dir])
460
461         LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename'
462         for t in LDB_TOOLS.split():
463             bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='ldb-cmdline ldb',
464                              manpages='man/%s.1' % t)
465
466         # ldbtest doesn't get installed
467         bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='ldb-cmdline ldb',
468                          install=False)
469
470         if bld.CONFIG_SET('HAVE_LMDB'):
471             lmdb_deps = ' lmdb'
472         else:
473             lmdb_deps = ''
474         # ldbdump doesn't get installed
475         bld.SAMBA_BINARY('ldbdump',
476                          'tools/ldbdump.c',
477                          deps='ldb-cmdline ldb' + lmdb_deps,
478                          install=False)
479
480         bld.SAMBA_LIBRARY('ldb-cmdline',
481                           source='tools/ldbutil.c tools/cmdline.c',
482                           deps='ldb dl popt',
483                           private_library=True)
484
485         bld.SAMBA_BINARY('ldb_tdb_mod_op_test',
486                          source='tests/ldb_mod_op_test.c',
487                          cflags='-DTEST_BE=\"tdb\"',
488                          deps='cmocka ldb',
489                          install=False)
490
491         bld.SAMBA_BINARY('ldb_tdb_guid_mod_op_test',
492                          source='tests/ldb_mod_op_test.c',
493                          cflags='-DTEST_BE=\"tdb\" -DGUID_IDX=1',
494                          deps='cmocka ldb',
495                          install=False)
496
497         bld.SAMBA_BINARY('ldb_tdb_kv_ops_test',
498                          source='tests/ldb_kv_ops_test.c',
499                          cflags='-DTEST_BE=\"tdb\"',
500                          deps='cmocka ldb',
501                          install=False)
502
503         bld.SAMBA_BINARY('ldb_tdb_test',
504                          source='tests/ldb_tdb_test.c',
505                          deps='cmocka ldb',
506                          install=False)
507
508         bld.SAMBA_BINARY('ldb_msg_test',
509                          source='tests/ldb_msg.c',
510                          deps='cmocka ldb',
511                          install=False)
512
513         bld.SAMBA_BINARY('test_ldb_qsort',
514                          source='tests/test_ldb_qsort.c',
515                          deps='cmocka ldb',
516                          install=False)
517
518         bld.SAMBA_BINARY('test_ldb_dn',
519                          source='tests/test_ldb_dn.c',
520                          deps='cmocka ldb',
521                          install=False)
522
523         if bld.CONFIG_SET('HAVE_LMDB'):
524             bld.SAMBA_BINARY('ldb_mdb_mod_op_test',
525                              source='tests/ldb_mod_op_test.c',
526                              cflags='-DTEST_BE=\"mdb\" -DGUID_IDX=1 '
527                                   + '-DTEST_LMDB=1',
528                              deps='cmocka ldb lmdb',
529                              install=False)
530
531             bld.SAMBA_BINARY('ldb_lmdb_test',
532                              source='tests/ldb_lmdb_test.c',
533                              deps='cmocka ldb',
534                              install=False)
535
536             bld.SAMBA_BINARY('ldb_lmdb_size_test',
537                              source='tests/ldb_lmdb_size_test.c',
538                              deps='cmocka ldb',
539                              install=False)
540
541             bld.SAMBA_BINARY('ldb_mdb_kv_ops_test',
542                              source='tests/ldb_kv_ops_test.c',
543                              cflags='-DTEST_BE=\"mdb\"',
544                              deps='cmocka ldb',
545                              install=False)
546
547 def test(ctx):
548     '''run ldb testsuite'''
549     env = samba_utils.LOAD_ENVIRONMENT()
550     ctx.env = env
551
552     if not env.HAVE_LMDB:
553         raise Errors.WafError('make test called, but ldb was built '
554                              '--without-ldb-lmdb')
555
556     test_prefix = "%s/st" % (Context.g_module.out)
557     shutil.rmtree(test_prefix, ignore_errors=True)
558     os.makedirs(test_prefix)
559     os.environ['TEST_DATA_PREFIX'] = test_prefix
560     os.environ['LDB_MODULES_PATH'] = Context.g_module.out + "/modules/ldb"
561     samba_utils.ADD_LD_LIBRARY_PATH('bin/shared')
562     samba_utils.ADD_LD_LIBRARY_PATH('bin/shared/private')
563
564     cmd = 'tests/test-tdb.sh %s' % Context.g_module.out
565     ret = samba_utils.RUN_COMMAND(cmd)
566     print("testsuite returned %d" % ret)
567
568     tmp_dir = os.path.join(test_prefix, 'tmp')
569     if not os.path.exists(tmp_dir):
570         os.mkdir(tmp_dir)
571     pyret = samba_utils.RUN_PYTHON_TESTS(
572         ['tests/python/api.py', 'tests/python/index.py'],
573         extra_env={'SELFTEST_PREFIX': test_prefix})
574     print("Python testsuite returned %d" % pyret)
575
576     cmocka_ret = 0
577     test_exes = ['test_ldb_qsort',
578                  'test_ldb_dn',
579                  'ldb_msg_test',
580                  'ldb_tdb_mod_op_test',
581                  'ldb_tdb_guid_mod_op_test',
582                  'ldb_msg_test',
583                  'ldb_tdb_kv_ops_test',
584                  'ldb_tdb_test',
585                  'ldb_mdb_mod_op_test',
586                  'ldb_lmdb_test',
587                  # we don't want to run ldb_lmdb_size_test (which proves we can
588                  # fit > 4G of data into the DB), it would fill up the disk on
589                  # many of our test instances
590                  'ldb_mdb_kv_ops_test']
591
592     for test_exe in test_exes:
593             cmd = os.path.join(Context.g_module.out, test_exe)
594             cmocka_ret = cmocka_ret or samba_utils.RUN_COMMAND(cmd)
595
596     sys.exit(ret or pyret or cmocka_ret)
597
598 def dist():
599     '''makes a tarball for distribution'''
600     samba_dist.dist()
601
602 def reconfigure(ctx):
603     '''reconfigure if config scripts have changed'''
604     import samba_utils
605     samba_utils.reconfigure(ctx)