summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-04-28 08:00:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:51:41 -0500
commit9a66e0f7fb2342b00ba36f3ae272e94d8325a335 (patch)
treed5c44824ecbb81e08a51fa7574331024ed56f38b /source4
parent18d141a3cfbf4a3de701d064acb55b18342bb2e6 (diff)
downloadsamba-9a66e0f7fb2342b00ba36f3ae272e94d8325a335.tar.gz
samba-9a66e0f7fb2342b00ba36f3ae272e94d8325a335.tar.bz2
samba-9a66e0f7fb2342b00ba36f3ae272e94d8325a335.zip
r22545: fix formating and a compiler warning
metze (This used to be commit 5e627cc7c097e2a5316f3140dc6551659e1ec7a9)
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/local/share.c54
1 files changed, 24 insertions, 30 deletions
diff --git a/source4/torture/local/share.c b/source4/torture/local/share.c
index 3ef26f772e..69e9340ff7 100644
--- a/source4/torture/local/share.c
+++ b/source4/torture/local/share.c
@@ -25,8 +25,8 @@
#include "torture/torture.h"
static bool test_list_empty(struct torture_context *tctx,
- const void *tcase_data,
- const void *test_data)
+ const void *tcase_data,
+ const void *test_data)
{
struct share_context *ctx = discard_const(tcase_data);
int count;
@@ -39,8 +39,8 @@ static bool test_list_empty(struct torture_context *tctx,
}
static bool test_create(struct torture_context *tctx,
- const void *tcase_data,
- const void *test_data)
+ const void *tcase_data,
+ const void *test_data)
{
struct share_context *ctx = discard_const(tcase_data);
int count;
@@ -77,8 +77,8 @@ static bool test_create(struct torture_context *tctx,
static bool test_create_invalid(struct torture_context *tctx,
- const void *tcase_data,
- const void *test_data)
+ const void *tcase_data,
+ const void *test_data)
{
struct share_context *ctx = discard_const(tcase_data);
NTSTATUS status;
@@ -89,19 +89,19 @@ static bool test_create_invalid(struct torture_context *tctx,
torture_skip(tctx, "Not supported by backend");
torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER,
- status,
- "create_share failed");
+ status,
+ "create_share failed");
torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER,
- share_create(ctx, NULL, NULL, 0),
- "create_share failed");
+ share_create(ctx, NULL, NULL, 0),
+ "create_share failed");
return true;
}
static bool test_share_remove_invalid(struct torture_context *tctx,
- const void *tcase_data,
- const void *test_data)
+ const void *tcase_data,
+ const void *test_data)
{
struct share_context *ctx = discard_const(tcase_data);
NTSTATUS status;
@@ -111,8 +111,7 @@ static bool test_share_remove_invalid(struct torture_context *tctx,
if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED))
torture_skip(tctx, "Not supported by backend");
- torture_assert_ntstatus_equal(ctx, status, NT_STATUS_UNSUCCESSFUL,
- "remove fails");
+ torture_assert_ntstatus_equal(tctx, status, NT_STATUS_UNSUCCESSFUL, "remove fails");
return true;
}
@@ -120,8 +119,8 @@ static bool test_share_remove_invalid(struct torture_context *tctx,
static bool test_share_remove(struct torture_context *tctx,
- const void *tcase_data,
- const void *test_data)
+ const void *tcase_data,
+ const void *test_data)
{
struct share_context *ctx = discard_const(tcase_data);
struct share_info inf[] = {
@@ -135,18 +134,16 @@ static bool test_share_remove(struct torture_context *tctx,
if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED))
torture_skip(tctx, "Not supported by backend");
- torture_assert_ntstatus_ok(tctx, status,
- "create_share failed");
+ torture_assert_ntstatus_ok(tctx, status, "create_share failed");
- torture_assert_ntstatus_ok(tctx, share_remove(ctx, "blie"),
- "remove failed");
+ torture_assert_ntstatus_ok(tctx, share_remove(ctx, "blie"), "remove failed");
return true;
}
static bool test_double_create(struct torture_context *tctx,
- const void *tcase_data,
- const void *test_data)
+ const void *tcase_data,
+ const void *test_data)
{
struct share_context *ctx = discard_const(tcase_data);
struct share_info inf[] = {
@@ -160,12 +157,11 @@ static bool test_double_create(struct torture_context *tctx,
if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED))
torture_skip(tctx, "Not supported by backend");
- torture_assert_ntstatus_ok(tctx, status,
- "create_share failed");
+ torture_assert_ntstatus_ok(tctx, status, "create_share failed");
torture_assert_ntstatus_equal(tctx, NT_STATUS_UNSUCCESSFUL,
- share_create(ctx, "bla", inf, 2),
- "create_share failed");
+ share_create(ctx, "bla", inf, 2),
+ "create_share failed");
return true;
}
@@ -176,8 +172,7 @@ static void tcase_add_share_tests(struct torture_tcase *tcase)
torture_tcase_add_test(tcase, "share_create", test_create, NULL);
torture_tcase_add_test(tcase, "share_remove", test_share_remove, NULL);
torture_tcase_add_test(tcase, "share_remove_invalid", test_share_remove_invalid, NULL);
- torture_tcase_add_test(tcase, "share_create_invalid", test_create_invalid,
- NULL);
+ torture_tcase_add_test(tcase, "share_create_invalid", test_create_invalid, NULL);
torture_tcase_add_test(tcase, "share_double_create", test_double_create, NULL);
}
@@ -199,8 +194,7 @@ static BOOL teardown(struct torture_context *tctx, void *data)
struct torture_suite *torture_local_share(TALLOC_CTX *mem_ctx)
{
- struct torture_suite *suite = torture_suite_create(mem_ctx,
- "SHARE");
+ struct torture_suite *suite = torture_suite_create(mem_ctx, "SHARE");
struct torture_tcase *tcase;
share_init();