diff options
author | Günther Deschner <gd@samba.org> | 2009-06-05 16:12:46 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-06-08 11:02:59 +0200 |
commit | bb6cb7ea123a4936c4f79f20f074e992410c8046 (patch) | |
tree | 6a7360a58c9dffe3185a040a9e30c3b8574c76d2 | |
parent | 89616420d8b58847babb7cb83a6f41408993ccdc (diff) | |
download | samba-bb6cb7ea123a4936c4f79f20f074e992410c8046.tar.gz samba-bb6cb7ea123a4936c4f79f20f074e992410c8046.tar.bz2 samba-bb6cb7ea123a4936c4f79f20f074e992410c8046.zip |
test: add NSS_WRAPPER_WINBIND_SO_PATH to make test.
Guenther
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 49c3e2acdf..f54fa6bd91 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3177,7 +3177,7 @@ TEST_EXTRA_ARGS = ${smbtorture4_option} ${selftest_shrdir} ${selftest_custom_con test:: all torture timelimit @echo Running Test suite - @LIB_PATH_VAR=$(LIB_PATH_VAR) PERL="$(PERL)" $(srcdir)/script/tests/selftest.sh ${selftest_prefix} all ${TEST_EXTRA_ARGS} + @LIB_PATH_VAR=$(LIB_PATH_VAR) PERL="$(PERL)" NSS_WRAPPER_WINBIND_SO_PATH="$(srcdir)/@WINBIND_NSS@" $(srcdir)/script/tests/selftest.sh ${selftest_prefix} all ${TEST_EXTRA_ARGS} valgrindtest:: all torture timelimit @echo Running Test suite with valgrind @@ -3197,6 +3197,7 @@ selftest:: all torture timelimit @LIB_PATH_VAR=$(LIB_PATH_VAR) $(S3_LD_LIBPATH_OVERRIDE) \ SAMBA4SHAREDDIR="$(builddir)/bin/shared" SMBTORTURE4=$(smbtorture4_path) \ PERL="$(PERL)" PYTHON="$(PYTHON)" \ + NSS_WRAPPER_WINBIND_SO_PATH="$(srcdir)/@WINBIND_NSS@" \ $(PERL) $(selftestdir)/selftest.pl \ --prefix=${selftest_prefix} --target=samba3 \ --testlist="$(srcdir)/selftest/tests.sh|" \ |