diff options
author | Andreas Schneider <asn@samba.org> | 2010-08-05 16:05:31 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2010-08-05 16:11:28 +0200 |
commit | 91a8d9bc9bfe557c1095a7262e3a1b28fc3279ab (patch) | |
tree | 00fa2582f56f2aacc1d413528d33b3785933137e /source4 | |
parent | 2a15f7008c5b49cfa91c8001ad2541c5a6c80f73 (diff) | |
download | samba-91a8d9bc9bfe557c1095a7262e3a1b28fc3279ab.tar.gz samba-91a8d9bc9bfe557c1095a7262e3a1b28fc3279ab.tar.bz2 samba-91a8d9bc9bfe557c1095a7262e3a1b28fc3279ab.zip |
s3-torture: Improve the winreg deletekey torture comments.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/winreg.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index f5e92954c3..c369389311 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -2922,7 +2922,8 @@ static bool test_key_base(struct torture_context *tctx, } if (!test_DeleteKey(b, tctx, handle, test_key1)) { - torture_comment(tctx, "DeleteKey failed\n"); + torture_comment(tctx, "DeleteKey(%s) failed\n", + test_key1); ret = false; } else { deleted = true; @@ -2957,13 +2958,13 @@ static bool test_key_base(struct torture_context *tctx, if (created3) { if (test_CreateKey(b, tctx, handle, test_subkey, NULL)) { if (!test_DeleteKey(b, tctx, handle, test_subkey)) { - torture_comment(tctx, "DeleteKey failed\n"); + torture_comment(tctx, "DeleteKey(%s) failed\n", test_subkey); ret = false; } } if (!test_DeleteKey(b, tctx, handle, test_key3)) { - torture_comment(tctx, "DeleteKey failed\n"); + torture_comment(tctx, "DeleteKey(%s) failed\n", test_key3); ret = false; } } @@ -3027,12 +3028,12 @@ static bool test_key_base_sd(struct torture_context *tctx, } if (created4 && !test_DeleteKey(b, tctx, handle, test_key4)) { - torture_comment(tctx, "DeleteKey failed\n"); + torture_comment(tctx, "DeleteKey(%s) failed\n", test_key4); ret = false; } if (created2 && !test_DeleteKey(b, tctx, handle, test_key4)) { - torture_comment(tctx, "DeleteKey failed\n"); + torture_comment(tctx, "DeleteKey(%s) failed\n", test_key4); ret = false; } |