The branch, master has been updated via ce9b72c ctdb-build: Install CTDB tests correctly from toplevel from a24ba3e s3: VFS: vfs_streams_xattr.c: Make streams_xattr_open() store the same path as streams_xattr_recheck().
https://git.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit ce9b72c17abb156de8185b100f27d1ddd3c89b15 Author: Amitay Isaacs <ami...@gmail.com> Date: Wed Feb 1 15:53:47 2017 +1100 ctdb-build: Install CTDB tests correctly from toplevel BUG: https://bugzilla.samba.org/show_bug.cgi?id=12547 Signed-off-by: Amitay Isaacs <ami...@gmail.com> Reviewed-by: Martin Schwenke <mar...@meltin.net> Autobuild-User(master): Martin Schwenke <mart...@samba.org> Autobuild-Date(master): Thu Feb 2 08:25:57 CET 2017 on sn-devel-144 ----------------------------------------------------------------------- Summary of changes: ctdb/wscript | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) Changeset truncated at 500 lines: diff --git a/ctdb/wscript b/ctdb/wscript index 446bd8d..13384c8 100644 --- a/ctdb/wscript +++ b/ctdb/wscript @@ -850,8 +850,13 @@ def build(bld): 'tool' ] + if bld.env.standalone_ctdb: + testdir = 'tests' + else: + testdir = 'ctdb/tests' + for t in test_subdirs: - files = SUBDIR_MODE('tests/%s' % t, trim_path='tests') + files = SUBDIR_MODE('%s/%s' % (testdir, t), trim_path=testdir) for fmode in files: bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR, 'tests/%s' % fmode[0], destname=fmode[0], chmod=fmode[1]) -- Samba Shared Repository