1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r22883: Indentation.

(This used to be commit 7548da913d)
This commit is contained in:
Andrew Bartlett 2007-05-15 07:15:23 +00:00 committed by Gerald (Jerry) Carter
parent 4febada51f
commit 61e5856403

View File

@ -58,28 +58,28 @@ NTSTATUS torture_local_init(void)
{
int i;
struct torture_suite *suite = torture_suite_create(
talloc_autofree_context(),
"LOCAL");
talloc_autofree_context(),
"LOCAL");
torture_suite_add_simple_test(suite, "TALLOC", torture_local_talloc);
torture_suite_add_simple_test(suite, "REPLACE", torture_local_replace);
torture_suite_add_simple_test(suite, "CRYPTO-SHA1",
torture_local_crypto_sha1);
torture_local_crypto_sha1);
torture_suite_add_simple_test(suite,
"CRYPTO-MD4", torture_local_crypto_md4);
"CRYPTO-MD4", torture_local_crypto_md4);
torture_suite_add_simple_test(suite, "CRYPTO-MD5",
torture_local_crypto_md5);
torture_local_crypto_md5);
torture_suite_add_simple_test(suite, "CRYPTO-HMACMD5",
torture_local_crypto_hmacmd5);
torture_local_crypto_hmacmd5);
torture_suite_add_simple_test(suite, "CRYPTO-HMACSHA1",
torture_local_crypto_hmacsha1);
torture_local_crypto_hmacsha1);
for (i = 0; suite_generators[i]; i++)
torture_suite_add_suite(suite,
suite_generators[i](talloc_autofree_context()));
suite_generators[i](talloc_autofree_context()));
suite->description = talloc_strdup(suite,
"Local, Samba-specific tests");
"Local, Samba-specific tests");
torture_register_suite(suite);