diff options
author | Günther Deschner <gd@samba.org> | 2009-06-05 12:13:25 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-06-05 13:41:18 +0200 |
commit | 5e0f122f7c00c7ba76a5f550c67ca31e5bea9aae (patch) | |
tree | a615941ea3f5a3114635b158d294d37fba6d0a91 /lib | |
parent | 34014f8aa6456a002e88b139774dd5a58533247b (diff) | |
download | samba-5e0f122f7c00c7ba76a5f550c67ca31e5bea9aae.tar.gz samba-5e0f122f7c00c7ba76a5f550c67ca31e5bea9aae.tar.bz2 samba-5e0f122f7c00c7ba76a5f550c67ca31e5bea9aae.zip |
nss_wrapper: rename test_nwrap_env to test_nwrap_enumeration in testsuite.
Guenther
Diffstat (limited to 'lib')
-rw-r--r-- | lib/nss_wrapper/testsuite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/nss_wrapper/testsuite.c b/lib/nss_wrapper/testsuite.c index c1b6e9ebbf..57c61f6d18 100644 --- a/lib/nss_wrapper/testsuite.c +++ b/lib/nss_wrapper/testsuite.c @@ -471,7 +471,7 @@ static bool test_nwrap_membership(struct torture_context *tctx) return true; } -static bool test_nwrap_env(struct torture_context *tctx) +static bool test_nwrap_enumeration(struct torture_context *tctx) { const char *old_pwd = getenv("NSS_WRAPPER_PASSWD"); const char *old_group = getenv("NSS_WRAPPER_GROUP"); @@ -493,7 +493,7 @@ struct torture_suite *torture_local_nss_wrapper(TALLOC_CTX *mem_ctx) { struct torture_suite *suite = torture_suite_create(mem_ctx, "NSS-WRAPPER"); - torture_suite_add_simple_test(suite, "env", test_nwrap_env); + torture_suite_add_simple_test(suite, "enumeration", test_nwrap_enumeration); torture_suite_add_simple_test(suite, "membership", test_nwrap_membership); return suite; |