diff options
author | Günther Deschner <gd@samba.org> | 2010-03-25 00:48:55 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-03-25 00:50:30 +0100 |
commit | 27c50255f6b05ff68301a3a32c1ede58626cac2c (patch) | |
tree | e088b0b6b1bb56c117724f173fbfdf6d31de753f /source4 | |
parent | 1bb8341871a6d91ec6b2e826c2cbcb395cba13ee (diff) | |
download | samba-27c50255f6b05ff68301a3a32c1ede58626cac2c.tar.gz samba-27c50255f6b05ff68301a3a32c1ede58626cac2c.tar.bz2 samba-27c50255f6b05ff68301a3a32c1ede58626cac2c.zip |
s4-smbtorture: mention job id in GetJob test output in RPC-SPOOLSS.
Guenther
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/spoolss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index 56a26d31c9..0b5022f7ce 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -2537,14 +2537,14 @@ static bool test_GetJob(struct torture_context *tctx, r.out.needed = &needed; r.out.info = &info; - torture_comment(tctx, "Testing GetJob level %d\n", r.in.level); + torture_comment(tctx, "Testing GetJob(%d), level %d\n", job_id, r.in.level); status = dcerpc_spoolss_GetJob_r(b, tctx, &r); torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL, "Unexpected return code"); for (i = 0; i < ARRAY_SIZE(levels); i++) { - torture_comment(tctx, "Testing GetJob level %d\n", r.in.level); + torture_comment(tctx, "Testing GetJob(%d), level %d\n", job_id, r.in.level); needed = 0; |