9 # find the buildtools directory
11 while not os
.path
.exists(srcdir
+'/buildtools') and len(srcdir
.split('/')) < 5:
12 srcdir
= srcdir
+ '/..'
13 sys
.path
.insert(0, srcdir
+ '/buildtools/wafsamba')
15 import wafsamba
, samba_dist
, Options
, Logs
, Utils
16 import samba_utils
, samba_version
18 env
= samba_utils
.LOAD_ENVIRONMENT()
19 if os
.path
.isfile('./VERSION'):
21 elif os
.path
.isfile('../VERSION'):
24 Logs
.error("VERSION file not found")
26 version
= samba_version
.samba_version_file('%s/VERSION' % vdir
, vdir
, env
)
27 VERSION
= version
.STRING
.replace('-', '.')
29 Options
.default_prefix
= '/usr/local'
31 samba_dist
.DIST_DIRS('''ctdb:. lib/replace:lib/replace lib/talloc:lib/talloc
32 lib/tevent:lib/tevent lib/tdb:lib/tdb
33 lib/socket_wrapper:lib/socket_wrapper
34 third_party/popt:third_party/popt
35 lib/util:lib/util lib/tdb_wrap:lib/tdb_wrap
36 lib/ccan:lib/ccan libcli/util:libcli/util
37 buildtools:buildtools third_party/waf:third_party/waf''')
41 opt
.PRIVATE_EXTENSION_DEFAULT('ctdb')
43 opt
.RECURSE('lib/replace')
45 opt
.RECURSE('lib/util')
47 opt
.RECURSE('lib/talloc')
48 opt
.RECURSE('lib/tevent')
49 opt
.RECURSE('lib/tdb')
51 opt
.add_option('--enable-infiniband',
52 help=("Turn on infiniband support (default=no)"),
53 action
="store_true", dest
='ctdb_infiniband', default
=False)
54 opt
.add_option('--enable-pmda',
55 help=("Turn on PCP pmda support (default=no)"),
56 action
="store_true", dest
='ctdb_pmda', default
=False)
58 opt
.add_option('--with-logdir',
59 help=("Path to log directory"),
60 action
="store", dest
='ctdb_logdir', default
=None)
61 opt
.add_option('--with-socketpath',
62 help=("path to CTDB daemon socket"),
63 action
="store_true", dest
='ctdb_sockpath', default
=False)
68 # CTDB relies on nested event loops
69 conf
.env
.TEVENT_DEPRECATED
= 1
71 # No need to build python bindings for talloc/tevent/tdb
72 if conf
.IN_LAUNCH_DIR():
73 conf
.env
.standalone_ctdb
= True
74 Options
.options
.disable_python
= True
76 conf
.RECURSE('lib/replace')
78 if conf
.env
.standalone_ctdb
:
79 conf
.SAMBA_CHECK_PERL(mandatory
=True)
81 conf
.SAMBA_CHECK_PYTHON(mandatory
=True, version
=(2,5,0))
82 conf
.SAMBA_CHECK_PYTHON_HEADERS(mandatory
=True)
84 if conf
.CHECK_FOR_THIRD_PARTY():
85 conf
.RECURSE('third_party/popt')
87 if not conf
.CHECK_POPT():
88 raise Utils
.WafError('popt development packages have not been found\nIf third_party is installed, check that it is in the proper place.')
90 conf
.define('USING_SYSTEM_POPT', 1)
92 conf
.RECURSE('lib/util')
94 conf
.RECURSE('lib/talloc')
95 conf
.RECURSE('lib/tevent')
96 conf
.RECURSE('lib/tdb')
97 conf
.RECURSE('lib/socket_wrapper')
99 conf
.CHECK_HEADERS('sched.h')
100 conf
.CHECK_HEADERS('procinfo.h')
101 if sys
.platform
.startswith('aix') and not conf
.CHECK_FUNCS('thread_setsched'):
102 Logs
.error('Need thread_setsched() on AIX')
104 elif not conf
.CHECK_FUNCS('sched_setscheduler'):
105 Logs
.error('Need sched_setscheduler()')
107 conf
.CHECK_FUNCS('mlockall')
109 if not conf
.CHECK_VARIABLE('ETIME', headers
='errno.h'):
110 conf
.DEFINE('ETIME', 'ETIMEDOUT')
112 if sys
.platform
.startswith('linux'):
113 conf
.SET_TARGET_TYPE('pcap', 'EMPTY')
115 if not conf
.CHECK_HEADERS('pcap.h'):
116 Logs
.error('Need libpcap')
118 if not conf
.CHECK_FUNCS_IN('pcap_open_live', 'pcap', headers
='pcap.h'):
119 Logs
.error('Need libpcap')
122 if not conf
.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
123 checklibc
=True, headers
='execinfo.h'):
124 Logs
.error('backtrace support not available')
127 if Options
.options
.ctdb_pmda
:
130 if not conf
.CHECK_HEADERS('pcp/pmapi.h pcp/impl.h pcp/pmda.h',
133 if not conf
.CHECK_FUNCS_IN('pmProgname', 'pcp'):
135 if not conf
.CHECK_FUNCS_IN('pmdaDaemon', 'pcp_pmda'):
140 Logs
.error("PMDA support not available")
142 Logs
.info('Building with PMDA support')
143 conf
.define('HAVE_PMDA', 1)
144 conf
.env
.CTDB_PMDADIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
,
145 'lib/pcp/pmdas/ctdb')
147 have_infiniband
= False
148 if Options
.options
.ctdb_infiniband
:
151 if not conf
.CHECK_HEADERS('infiniband/verbs.h rdma/rdma_cma.h'):
153 if not conf
.CHECK_FUNCS_IN('ibv_create_qp', 'ibverbs'):
155 if not conf
.CHECK_FUNCS_IN('rdma_connect', 'rdmacm'):
158 have_infiniband
= True
160 Logs
.error("Infiniband support not available")
162 Logs
.info('Building with Infiniband support')
163 conf
.define('HAVE_INFINIBAND', 1)
164 conf
.define('USE_INFINIBAND', 1)
166 conf
.env
.CTDB_BINDIR
= os
.path
.join(conf
.env
.EXEC_PREFIX
, 'bin')
167 conf
.env
.CTDB_ETCDIR
= os
.path
.join(conf
.env
.SYSCONFDIR
, 'ctdb')
168 conf
.env
.CTDB_VARDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'lib/ctdb')
169 conf
.env
.CTDB_RUNDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'run/ctdb')
171 if Options
.options
.ctdb_logdir
:
172 conf
.env
.CTDB_LOGDIR
= Options
.options
.ctdb_logdir
174 conf
.env
.CTDB_LOGDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'log')
176 if Options
.options
.ctdb_sockpath
:
177 conf
.env
.CTDB_SOCKPATH
= Options
.options
.ctdb_sockpath
179 conf
.env
.CTDB_SOCKPATH
= os
.path
.join(conf
.env
.CTDB_RUNDIR
,
182 conf
.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%s\"
187 -DCTDB_RUNDIR=\"%s\"''' % (
188 conf
.env
.CTDB_BINDIR
,
189 conf
.env
.CTDB_LOGDIR
,
190 conf
.env
.CTDB_SOCKPATH
,
191 conf
.env
.CTDB_ETCDIR
,
192 conf
.env
.CTDB_VARDIR
,
193 conf
.env
.CTDB_RUNDIR
))
195 conf
.env
.CTDB_TEST_DATADIR
= os
.path
.join(conf
.env
.EXEC_PREFIX
,
197 conf
.env
.CTDB_TEST_LIBDIR
= os
.path
.join(conf
.env
.LIBDIR
, 'ctdb-tests')
199 # Allow unified compilation and separate compilation of utilities
201 if not conf
.env
.standalone_ctdb
:
202 conf
.ADD_EXTRA_INCLUDES('#ctdb/include')
205 # Building from tarball
206 conf
.ADD_EXTRA_INCLUDES('#include')
207 conf
.ADD_EXTRA_INCLUDES('#include/internal')
209 # Building standalone CTDB from within Samba tree
210 conf
.ADD_EXTRA_INCLUDES('#ctdb/include')
211 conf
.ADD_EXTRA_INCLUDES('#ctdb/include/internal')
212 conf
.ADD_EXTRA_INCLUDES('#ctdb')
213 conf
.ADD_EXTRA_INCLUDES('#lib #lib/replace')
215 del(conf
.env
.defines
['PYTHONDIR'])
216 del(conf
.env
.defines
['PYTHONARCHDIR'])
218 conf
.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags
=True)
219 conf
.DEFINE('SAMBA_UTIL_CORE_ONLY', 1, add_to_cflags
=True)
220 conf
.SAMBA_CONFIG_H()
224 if bld
.env
.standalone_ctdb
:
225 # enable building of public headers in the build tree
226 bld
.env
.build_public_headers
= 'include/public'
228 if bld
.env
.standalone_ctdb
:
229 ctdb_mkversion
= '../packaging/mkversion.sh'
231 ctdb_mkversion
= '../ctdb/packaging/mkversion.sh'
232 t
= bld
.SAMBA_GENERATOR('ctdb-version-header',
233 target
='include/ctdb_version.h',
234 rule
='%s ${TGT} %s' % (ctdb_mkversion
, VERSION
),
235 dep_vars
=['VERSION'])
236 t
.env
.VERSION
= VERSION
238 if bld
.env
.standalone_ctdb
:
239 version_h
= samba_utils
.os_path_relpath(os
.path
.join(Options
.launch_dir
,
242 t
.bld
.SAMBA_GENERATOR('ctdb-samba-version-header',
244 rule
='printf "#include \\"ctdb_version.h\\" \\n#define SAMBA_VERSION_STRING CTDB_VERSION_STRING\\n" > ${TGT}',
245 dep_vars
=['VERSION'])
246 t
.env
.VERSION
= VERSION
248 bld
.RECURSE('lib/replace')
249 if bld
.CHECK_FOR_THIRD_PARTY():
250 bld
.RECURSE('third_party/popt')
252 bld
.RECURSE('lib/tdb_wrap')
253 bld
.RECURSE('lib/util')
255 bld
.RECURSE('lib/talloc')
256 bld
.RECURSE('lib/tevent')
257 bld
.RECURSE('lib/tdb')
258 bld
.RECURSE('lib/socket_wrapper')
260 if bld
.env
.standalone_ctdb
:
261 # In a combined build is implemented, CTDB will wanted to
262 # build against samba-util rather than samba-util-core.
263 # Similarly, other Samba subsystems expect samba-util. So,
264 # for a standalone build, just define a fake samba-util
265 # subsystem that pulls in samba-util-core.
266 bld
.SAMBA_SUBSYSTEM('samba-util',
268 deps
='samba-util-core')
270 bld
.SAMBA_SUBSYSTEM('ctdb-tcp',
271 source
=bld
.SUBDIR('tcp',
272 'tcp_connect.c tcp_init.c tcp_io.c'),
273 includes
='include include/internal',
274 deps
='replace tdb talloc tevent')
277 if bld
.env
.HAVE_INFINIBAND
:
278 bld
.SAMBA_SUBSYSTEM('ctdb-ib',
279 source
=bld
.SUBDIR('ib',
280 '''ibwrapper.c ibw_ctdb.c
282 includes
='include include/internal',
284 ib_deps
= ' ctdb-ib rdmacm ibverbs'
286 bld
.SAMBA_SUBSYSTEM('ctdb-common',
287 source
=bld
.SUBDIR('common',
288 '''ctdb_io.c ctdb_util.c ctdb_ltdb.c
289 ctdb_message.c cmdline.c rb_tree.c
290 system_common.c ctdb_fork.c'''),
291 includes
='include include/internal common .',
292 deps
='replace popt talloc tevent tdb popt')
294 bld
.SAMBA_SUBSYSTEM('ctdb-common-util',
295 source
=bld
.SUBDIR('common',
296 'system_util.c ctdb_logging.c'),
297 includes
='include include/internal',
298 deps
='replace tevent tdb')
300 if sys
.platform
.startswith('linux'):
301 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_linux.c')
302 elif sys
.platform
.startswith('aix'):
303 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_aix.c')
304 elif sys
.platform
.startswith('freebsd'):
305 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_freebsd.c')
306 elif sys
.platform
== 'kfreebsd':
307 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_kfreebsd.c')
308 elif sys
.platform
== 'gnu':
309 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_gnu.c')
311 Logs
.error("Platform %s not supported" % sys
.platform
)
313 bld
.SAMBA_SUBSYSTEM('ctdb-system',
314 source
=CTDB_SYSTEM_SRC
,
315 includes
='include include/internal',
316 deps
='replace talloc tevent tdb pcap')
318 bld
.SAMBA_SUBSYSTEM('ctdb-client',
319 source
=bld
.SUBDIR('client', 'ctdb_client.c'),
320 includes
='include include/internal',
321 public_headers
='include/ctdb_client.h',
322 deps
='''replace popt talloc tevent tdb
323 samba-util tdb-wrap''')
325 bld
.SAMBA_SUBSYSTEM('ctdb-server',
326 source
='server/ctdbd.c ' +
328 '''ctdb_daemon.c ctdb_recoverd.c
329 ctdb_recover.c ctdb_freeze.c
330 ctdb_tunables.c ctdb_monitor.c
331 ctdb_server.c ctdb_control.c
332 ctdb_call.c ctdb_ltdb_server.c
333 ctdb_traverse.c eventscript.c
334 ctdb_takeover.c ctdb_serverids.c
335 ctdb_persistent.c ctdb_keepalive.c
337 ctdb_logging_syslog.c
340 ctdb_vacuum.c ctdb_banning.c
344 includes
='include include/internal',
345 public_headers
='''include/ctdb_version.h
347 include/ctdb_private.h
348 include/ctdb_protocol.h
349 include/ctdb_typesafe_cb.h''',
350 deps
='replace popt talloc tevent tdb')
352 bld
.SAMBA_BINARY('ctdbd',
354 deps
='''ctdb-server ctdb-client ctdb-common
355 ctdb-common-util ctdb-system ctdb-tcp''' +
357 install_path
='${SBINDIR}',
358 manpages
='doc/ctdbd.1')
360 bld
.SAMBA_BINARY('ctdb',
361 source
='tools/ctdb.c tools/ctdb_vacuum.c',
362 deps
='''ctdb-client ctdb-common ctdb-common-util
364 includes
='include include/internal',
365 install_path
='${BINDIR}',
366 manpages
='doc/ctdb.1')
368 bld
.SAMBA_BINARY('ltdbtool',
369 source
='tools/ltdbtool.c',
372 install_path
='${BINDIR}',
373 manpages
='doc/ltdbtool.1')
375 bld
.SAMBA_BINARY('ctdb_lock_helper',
376 source
='server/ctdb_lock_helper.c',
377 deps
='samba-util ctdb-common-util talloc tdb',
378 includes
='include include/internal',
379 install_path
='${BINDIR}')
381 bld
.SAMBA_BINARY('ctdb_event_helper',
382 source
='server/ctdb_event_helper.c',
383 includes
='include include/internal',
384 deps
='samba-util ctdb-common-util replace tdb',
385 install_path
='${BINDIR}')
387 bld
.SAMBA_GENERATOR('ctdb-smnotify-h',
388 source
='utils/smnotify/smnotify.x',
389 target
='utils/smnotify/smnotify.h',
390 rule
='rpcgen -h ${SRC} > ${TGT}')
392 xdr_buf_hack
= 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"'
394 bld
.SAMBA_GENERATOR('ctdb-smnotify-x',
395 source
='utils/smnotify/smnotify.x',
396 target
='utils/smnotify/gen_xdr.c',
397 rule
='rpcgen -c ${SRC} | ' + xdr_buf_hack
+ ' > ${TGT}')
399 bld
.SAMBA_GENERATOR('ctdb-smnotify-c',
400 source
='utils/smnotify/smnotify.x',
401 target
='utils/smnotify/gen_smnotify.c',
402 rule
='rpcgen -l ${SRC} > ${TGT}')
404 bld
.SAMBA_BINARY('smnotify',
405 source
=bld
.SUBDIR('utils/smnotify',
406 'smnotify.c gen_smnotify.c gen_xdr.c'),
407 deps
='ctdb-smnotify-h ctdb-smnotify-c ctdb-smnotify-x popt',
408 includes
='utils utils/smnotify',
409 install_path
='${BINDIR}')
411 bld
.SAMBA_BINARY('ping_pong',
412 source
='utils/ping_pong/ping_pong.c',
414 install_path
='${BINDIR}',
415 manpages
='doc/ping_pong.1')
417 if bld
.env
.HAVE_PMDA
:
418 bld
.SAMBA_BINARY('pmdactdb',
419 source
='utils/pmda/pmda_ctdb.c',
420 includes
='include include/internal',
421 deps
='''ctdb-client ctdb-common ctdb-system
423 install_path
='${CTDB_PMDADIR}')
424 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
426 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
428 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
430 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
432 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
434 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
437 if 'XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']:
438 bld
.MANPAGES('''doc/onnode.1 doc/ctdbd_wrapper.1 doc/ctdbd.conf.5
439 doc/ctdb.7 doc/ctdb-statistics.7 doc/ctdb-tunables.7''',
442 bld
.INSTALL_FILES('${BINDIR}', 'tools/onnode',
443 destname
='onnode', chmod
=0755)
444 bld
.INSTALL_FILES('${BINDIR}', 'tools/ctdb_diagnostics',
445 destname
='ctdb_diagnostics', chmod
=0755)
446 bld
.INSTALL_FILES('${SBINDIR}', 'config/ctdbd_wrapper',
447 destname
='ctdbd_wrapper', chmod
=0755)
449 def SUBDIR_MODE_callback(arg
, dirname
, fnames
):
451 fl
= os
.path
.join(dirname
, f
)
452 if os
.path
.isdir(fl
) or os
.path
.islink(fl
):
454 mode
= os
.lstat(fl
).st_mode
& 0777
456 fl
= samba_utils
.os_path_relpath(fl
, arg
['trim_path'])
457 arg
['file_list'].append([fl
, mode
])
459 def SUBDIR_MODE(path
, trim_path
=None):
460 pd
= {'trim_path': trim_path
, 'file_list': []}
461 os
.path
.walk(path
, SUBDIR_MODE_callback
, pd
)
462 return pd
['file_list']
469 if bld
.env
.standalone_ctdb
:
472 configdir
= 'ctdb/config'
474 for t
in etc_subdirs
:
475 files
= SUBDIR_MODE('%s/%s' % (configdir
, t
), trim_path
=configdir
)
477 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'config/%s' % fmode
[0],
478 destname
=fmode
[0], chmod
=fmode
[1])
480 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'config/functions',
481 destname
='functions')
484 'ctdb-crash-cleanup.sh',
485 'debug-hung-script.sh',
492 for t
in etc_scripts
:
493 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'config/%s' % t
,
494 destname
=t
, chmod
=0755)
496 bld
.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'config/ctdb.sudoers',
499 bld
.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
502 bld
.install_dir(bld
.env
.CTDB_LOGDIR
)
503 bld
.install_dir(bld
.env
.CTDB_RUNDIR
)
504 bld
.install_dir(bld
.env
.CTDB_VARDIR
)
506 sed_expr
= 's/@PACKAGE_VERSION@/%s/g' % VERSION
507 t
= bld
.SAMBA_GENERATOR('ctdb-pc',
510 rule
='sed -e "%s" ${SRC} > ${TGT}' % sed_expr
,
511 dep_vars
=['VERSION'])
512 t
.env
.VERSION
= VERSION
513 bld
.INSTALL_FILES('${LIBDIR}/pkgconfig', 'ctdb.pc')
521 'ctdb_fetch_readonly_once',
522 'ctdb_fetch_readonly_loop',
523 'ctdb_trackingdb_test',
524 'ctdb_update_record',
525 'ctdb_update_record_persistent',
530 'ctdb_porting_tests',
535 for target
in ctdb_tests
:
536 src
= 'tests/src/' + target
+ '.c'
538 bld
.SAMBA_BINARY(target
,
540 includes
='include include/internal',
541 deps
='''ctdb-client ctdb-common ctdb-common-util
543 install_path
='${CTDB_TEST_LIBDIR}')
545 bld
.SAMBA_BINARY('ctdb_takeover_tests',
546 source
='tests/src/ctdb_takeover_tests.c',
547 deps
='''replace popt tdb tevent talloc ctdb-system
548 samba-util tdb-wrap''' +
550 includes
='include include/internal',
551 install_path
='${CTDB_TEST_LIBDIR}')
553 bld
.SAMBA_BINARY('ctdb_functest',
554 source
='tests/src/ctdb_functest.c',
555 deps
='''replace tdb tevent talloc popt ctdb-system
556 samba-util tdb-wrap''',
557 includes
='include include/internal',
558 install_path
='${CTDB_TEST_LIBDIR}')
560 bld
.SAMBA_BINARY('ctdb_stubtest',
561 source
='tests/src/ctdb_test.c',
562 deps
='''replace tdb tevent talloc popt ctdb-system
563 samba-util tdb-wrap''',
564 includes
='include include/internal',
565 install_path
='${CTDB_TEST_LIBDIR}')
567 if bld
.env
.HAVE_INFINIBAND
:
568 bld
.SAMBA_BINARY('ibwrapper_test',
569 source
='ib/ibwrapper_test.c',
570 includes
='include include/internal',
571 deps
='''replace talloc ctdb-client ctdb-common
574 install_path
='${CTDB_TEST_LIBDIR}')
586 for t
in test_subdirs
:
587 files
= SUBDIR_MODE('tests/%s' % t
, trim_path
='tests')
589 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
, 'tests/%s' % fmode
[0],
590 destname
=fmode
[0], chmod
=fmode
[1])
592 # Install tests/scripts directory without test_wrap
599 for t
in test_scripts
:
600 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
,
601 os
.path
.join('tests/scripts', t
),
602 destname
=os
.path
.join('scripts', t
))
604 sed_expr
= 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
605 bld
.env
.CTDB_TEST_LIBDIR
)
606 bld
.SAMBA_GENERATOR('ctdb-test-wrap',
607 source
='tests/scripts/test_wrap',
609 rule
='sed -e "%s" ${SRC} > ${TGT}' % sed_expr
)
610 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
+"/scripts", 'test_wrap',
611 destname
='test_wrap', chmod
=0755)
613 sed_expr1
= 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
614 bld
.env
.CTDB_TEST_DATADIR
, bld
.env
.CTDB_TEST_LIBDIR
)
615 sed_expr2
= 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
616 bld
.SAMBA_GENERATOR('ctdb-test-runner',
617 source
='tests/run_tests.sh',
618 target
='ctdb_run_tests.sh',
619 rule
='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
620 sed_expr1
, sed_expr2
))
621 bld
.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
622 destname
='ctdb_run_tests', chmod
=0755)
623 bld
.symlink_as(os
.path
.join(bld
.env
.BINDIR
, 'ctdb_run_cluster_tests'),
626 test_eventscript_links
= [
633 test_link_dir
= os
.path
.join(bld
.env
.CTDB_TEST_DATADIR
,
634 'eventscripts/etc-ctdb')
635 for t
in test_eventscript_links
:
636 bld
.symlink_as(os
.path
.join(test_link_dir
, t
),
637 os
.path
.join(bld
.env
.CTDB_ETCDIR
, t
))
641 cmd
= 'tests/run_tests.sh -V tests/var'
642 ret
= samba_utils
.RUN_COMMAND(cmd
)
644 print('tests exited with exit status %d' % ret
)
650 Scripting
.commands
.append('build')
651 Scripting
.commands
.append('testonly')
655 ld
= 'LD_PRELOAD=%s/bin/shared/libsocket-wrapper.so' % os
.getcwd()
656 cmd
= '%s tests/run_tests.sh -e -S -C' % ld
657 ret
= samba_utils
.RUN_COMMAND(cmd
)
659 print('autotest exited with exit status %d' % ret
)
663 def show_version(ctx
):
668 samba_dist
.DIST_FILES('VERSION:VERSION', extend
=True)
670 t
= 'include/ctdb_version.h'
671 cmd
= 'packaging/mkversion.sh %s %s' % (t
, VERSION
)
672 ret
= samba_utils
.RUN_COMMAND(cmd
)
674 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
676 samba_dist
.DIST_FILES('ctdb/%s:%s' % (t
, t
), extend
=True)
679 sed_expr1
= 's/@VERSION@/%s/g' % VERSION
680 sed_expr2
= 's/@RELEASE@/%s/g' % '1'
681 cmd
= 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
682 sed_expr1
, sed_expr2
, t
)
683 ret
= samba_utils
.RUN_COMMAND(cmd
)
685 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
687 samba_dist
.DIST_FILES('ctdb/%s:%s' % (t
, t
), extend
=True)
701 ret
= samba_utils
.RUN_COMMAND(cmd
)
703 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
706 samba_dist
.DIST_FILES('ctdb/doc/%s:doc/%s' % (t
, t
), extend
=True)
707 samba_dist
.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t
, t
),
714 cmd
= 'rpmbuild -ta --clean --rmsource ctdb-%s.tar.gz' % VERSION
715 ret
= samba_utils
.RUN_COMMAND(cmd
)
717 print('rpmbuild exited with exit status %d' % ret
)
723 Scripting
.commands
.append('dist')
724 Scripting
.commands
.append('rpmonly')
728 "build 'tags' file using ctags"
730 source_root
= os
.path
.dirname(Utils
.g_module
.root_path
)
731 cmd
= 'ctags $(find %s -name "*.[ch]")' % source_root
732 print("Running: %s" % cmd
)
733 ret
= samba_utils
.RUN_COMMAND(cmd
)
735 print('ctags failed with exit status %d' % ret
)