openldap/contrib/slapd-modules/ciboolean/tests/Rules.mk
Nadezhda Ivanova a0a64e0389 ITS#9855 Implement a module to enable case-insensitive Boolean values
Initial implementation of the ciboolean module
2022-07-06 18:32:58 +03:00

23 lines
510 B
Makefile

sp := $(sp).x
dirstack_$(sp) := $(d)
d := $(dir)
.PHONY: test
CLEAN += clients servers tests/progs tests/schema tests/testdata tests/testrun
test: all clients servers tests/progs
test:
cd tests; \
SRCDIR=$(abspath $(LDAP_SRC)) \
LDAP_BUILD=$(abspath $(LDAP_BUILD)) \
TOPDIR=$(abspath $(SRCDIR)) \
LIBTOOL=$(abspath $(LIBTOOL)) \
$(abspath $(SRCDIR))/tests/run test001-ciboolean
servers clients tests/progs:
ln -s $(abspath $(LDAP_BUILD))/$@ $@
d := $(dirstack_$(sp))
sp := $(basename $(sp))