summaryrefslogtreecommitdiff
path: root/source4/torture/local/local.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/torture/local/local.c')
-rw-r--r--source4/torture/local/local.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/source4/torture/local/local.c b/source4/torture/local/local.c
index 4180d308da..a8147daf0c 100644
--- a/source4/torture/local/local.c
+++ b/source4/torture/local/local.c
@@ -20,11 +20,11 @@
#include "includes.h"
#include "torture/smbtorture.h"
#include "torture/local/proto.h"
-#include "torture/ndr/ndr.h"
#include "torture/ndr/proto.h"
#include "torture/auth/proto.h"
#include "../lib/crypto/test_proto.h"
#include "lib/registry/tests/proto.h"
+#include "lib/replace/replace-test.h"
/* ignore me */ static struct torture_suite *
(*suite_generators[]) (TALLOC_CTX *mem_ctx) =
@@ -39,12 +39,19 @@
torture_local_util_str,
torture_local_util_time,
torture_local_util_data_blob,
+ torture_local_util_asn1,
+ torture_local_util_anonymous_shared,
torture_local_idtree,
+ torture_local_dlinklist,
torture_local_genrand,
torture_local_iconv,
torture_local_socket,
+#ifdef SOCKET_WRAPPER
torture_local_socket_wrapper,
+#endif
+#ifdef NSS_WRAPPER
torture_local_nss_wrapper,
+#endif
torture_pac,
torture_local_resolve,
torture_local_sddl,
@@ -59,6 +66,8 @@
torture_local_dbspeed,
torture_local_credentials,
torture_ldb,
+ torture_dsdb_dn,
+ torture_dsdb_syntax,
torture_registry,
NULL
};
@@ -67,17 +76,16 @@ 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, "talloc", torture_local_talloc);
+ torture_suite_add_simple_test(suite, "replace", torture_local_replace);
torture_suite_add_simple_test(suite,
- "CRYPTO-MD4", torture_local_crypto_md4);
- torture_suite_add_simple_test(suite, "CRYPTO-MD5",
+ "crypto.md4", torture_local_crypto_md4);
+ torture_suite_add_simple_test(suite, "crypto.md5",
torture_local_crypto_md5);
- torture_suite_add_simple_test(suite, "CRYPTO-HMACMD5",
+ torture_suite_add_simple_test(suite, "crypto.hmacmd5",
torture_local_crypto_hmacmd5);
for (i = 0; suite_generators[i]; i++)