1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

s3/lib: tevent-glib-glue test utiltity with Tracker

A small utilitly useful for tesing the tevent_glib_glue code. It runs a
tracker-sparql search query against your local tracker store that must
be setup and running.

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Noel Power <npower@samba.org>
This commit is contained in:
Ralph Boehme
2016-01-22 15:38:39 +01:00
parent 1f836d4c7f
commit 6592daf56f
2 changed files with 298 additions and 0 deletions

View File

@ -1333,6 +1333,16 @@ bld.SAMBA3_BINARY('tevent_glib_glue_test',
enabled=bld.CONFIG_SET('WITH_TEVENT_GLIB_GLUE'),
install=False)
bld.SAMBA3_BINARY('tevent_glib_tracker',
source='utils/async-tracker.c',
deps='''
talloc
libsmb
popt_samba3
tevent-glib-glue ''' + bld.env['libtracker'],
enabled=bld.CONFIG_SET('HAVE_TRACKER') and bld.CONFIG_SET('WITH_TEVENT_GLIB_GLUE'),
install=False)
########################## INCLUDES #################################
bld.RECURSE('auth')