summaryrefslogtreecommitdiff
path: root/source4/torture/ndr
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-09-16 16:25:51 +0200
committerGünther Deschner <gd@samba.org>2010-09-16 16:25:51 +0200
commit5f9caf18dbba8b6ddb2779bcec4836b605b5fa1e (patch)
treec3841db69617077cc5b22fe29c9192c68e607159 /source4/torture/ndr
parent725126b1723438ba8b6f9dd41eac8730856da41e (diff)
downloadsamba-5f9caf18dbba8b6ddb2779bcec4836b605b5fa1e.tar.gz
samba-5f9caf18dbba8b6ddb2779bcec4836b605b5fa1e.tar.bz2
samba-5f9caf18dbba8b6ddb2779bcec4836b605b5fa1e.zip
s4-smbtorture: fix some indentation in NDR testsuite.
Guenther
Diffstat (limited to 'source4/torture/ndr')
-rw-r--r--source4/torture/ndr/ndr.c58
1 files changed, 30 insertions, 28 deletions
diff --git a/source4/torture/ndr/ndr.c b/source4/torture/ndr/ndr.c
index cf99c0bd9e..03c751c364 100644
--- a/source4/torture/ndr/ndr.c
+++ b/source4/torture/ndr/ndr.c
@@ -32,8 +32,8 @@ struct ndr_pull_test_data {
};
static bool wrap_ndr_pull_test(struct torture_context *tctx,
- struct torture_tcase *tcase,
- struct torture_test *test)
+ struct torture_tcase *tcase,
+ struct torture_test *test)
{
bool (*check_fn) (struct torture_context *ctx, void *data) = test->fn;
const struct ndr_pull_test_data *data = (const struct ndr_pull_test_data *)test->data;
@@ -144,8 +144,8 @@ static bool test_guid_from_string_null(struct torture_context *tctx)
{
struct GUID guid;
torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER,
- GUID_from_string(NULL, &guid),
- "NULL failed");
+ GUID_from_string(NULL, &guid),
+ "NULL failed");
return true;
}
@@ -153,8 +153,8 @@ static bool test_guid_from_string_invalid(struct torture_context *tctx)
{
struct GUID g1;
torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER,
- GUID_from_string("bla", &g1),
- "parameter not invalid");
+ GUID_from_string("bla", &g1),
+ "parameter not invalid");
return true;
}
@@ -162,8 +162,8 @@ static bool test_guid_from_string(struct torture_context *tctx)
{
struct GUID g1, exp;
torture_assert_ntstatus_ok(tctx,
- GUID_from_string("00000001-0002-0003-0405-060708090a0b", &g1),
- "invalid return code");
+ GUID_from_string("00000001-0002-0003-0405-060708090a0b", &g1),
+ "invalid return code");
exp.time_low = 1;
exp.time_mid = 2;
exp.time_hi_and_version = 3;
@@ -177,8 +177,8 @@ static bool test_guid_from_string(struct torture_context *tctx)
exp.node[5] = 11;
torture_assert(tctx, GUID_equal(&g1, &exp), "UUID parsed incorrectly");
torture_assert_ntstatus_ok(tctx,
- GUID_from_string("{00000001-0002-0003-0405-060708090a0b}", &g1),
- "invalid return code");
+ GUID_from_string("{00000001-0002-0003-0405-060708090a0b}", &g1),
+ "invalid return code");
torture_assert(tctx, GUID_equal(&g1, &exp), "UUID parsed incorrectly");
return true;
@@ -198,8 +198,9 @@ static bool test_guid_string_valid(struct torture_context *tctx)
g.node[3] = 9;
g.node[4] = 10;
g.node[5] = 11;
- torture_assert_str_equal(tctx, "00000001-0002-0003-0405-060708090a0b", GUID_string(tctx, &g),
- "parsing guid failed");
+ torture_assert_str_equal(tctx, "00000001-0002-0003-0405-060708090a0b",
+ GUID_string(tctx, &g),
+ "parsing guid failed");
return true;
}
@@ -217,8 +218,9 @@ static bool test_guid_string2_valid(struct torture_context *tctx)
g.node[3] = 9;
g.node[4] = 10;
g.node[5] = 11;
- torture_assert_str_equal(tctx, "{00000001-0002-0003-0405-060708090a0b}", GUID_string2(tctx, &g),
- "parsing guid failed");
+ torture_assert_str_equal(tctx, "{00000001-0002-0003-0405-060708090a0b}",
+ GUID_string2(tctx, &g),
+ "parsing guid failed");
return true;
}
@@ -227,28 +229,28 @@ static bool test_compare_uuid(struct torture_context *tctx)
struct GUID g1, g2;
ZERO_STRUCT(g1); ZERO_STRUCT(g2);
torture_assert_int_equal(tctx, 0, GUID_compare(&g1, &g2),
- "GUIDs not equal");
+ "GUIDs not equal");
g1.time_low = 1;
torture_assert_int_equal(tctx, 1, GUID_compare(&g1, &g2),
- "GUID diff invalid");
+ "GUID diff invalid");
g1.time_low = 10;
torture_assert_int_equal(tctx, 1, GUID_compare(&g1, &g2),
- "GUID diff invalid");
+ "GUID diff invalid");
g1.time_low = 0;
g1.clock_seq[1] = 20;
torture_assert_int_equal(tctx, 1, GUID_compare(&g1, &g2),
- "GUID diff invalid");
+ "GUID diff invalid");
g1.time_low = ~0;
torture_assert_int_equal(tctx, 1, GUID_compare(&g1, &g2),
- "GUID diff invalid");
+ "GUID diff invalid");
g1.time_low = 0;
g2.time_low = ~0;
torture_assert_int_equal(tctx, -1, GUID_compare(&g1, &g2),
- "GUID diff invalid");
+ "GUID diff invalid");
return true;
}
@@ -270,28 +272,28 @@ struct torture_suite *torture_local_ndr(TALLOC_CTX *mem_ctx)
torture_suite_add_suite(suite, ndr_nbt_suite(suite));
torture_suite_add_simple_test(suite, "string terminator",
- test_check_string_terminator);
+ test_check_string_terminator);
torture_suite_add_simple_test(suite, "guid_from_string_null",
- test_guid_from_string_null);
+ test_guid_from_string_null);
torture_suite_add_simple_test(suite, "guid_from_string",
- test_guid_from_string);
+ test_guid_from_string);
torture_suite_add_simple_test(suite, "guid_from_string_invalid",
- test_guid_from_string_invalid);
+ test_guid_from_string_invalid);
torture_suite_add_simple_test(suite, "guid_string_valid",
- test_guid_string_valid);
+ test_guid_string_valid);
torture_suite_add_simple_test(suite, "guid_string2_valid",
- test_guid_string2_valid);
+ test_guid_string2_valid);
torture_suite_add_simple_test(suite, "guid_from_string_valid",
- test_guid_from_string_valid);
+ test_guid_from_string_valid);
torture_suite_add_simple_test(suite, "compare_uuid",
- test_compare_uuid);
+ test_compare_uuid);
return suite;
}