mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s4-smbtorture: Fix test_SetPrinterDataEx_keys and test_SetPrinterDataEx_values.
We want to continue, not to skip here. Guenther
This commit is contained in:
parent
26a95463a6
commit
7f8b3a26ec
@ -4841,9 +4841,9 @@ static bool test_SetPrinterDataEx_keys(struct torture_context *tctx,
|
||||
char *q;
|
||||
q = strrchr(keys[i], '\\');
|
||||
if (q) {
|
||||
torture_skip(tctx,
|
||||
talloc_asprintf(tctx, "skipping keyname '%s' including '\\' character against Samba3\n",
|
||||
keys[i]));
|
||||
torture_comment(tctx, "skipping keyname '%s' including '\\' character against Samba3\n",
|
||||
keys[i]);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
@ -4946,9 +4946,9 @@ static bool test_SetPrinterDataEx_values(struct torture_context *tctx,
|
||||
char *q;
|
||||
q = strrchr(values[i], ',');
|
||||
if (q) {
|
||||
torture_skip(tctx,
|
||||
talloc_asprintf(tctx, "skipping valuename '%s' including ',' character against Samba3\n",
|
||||
values[i]));
|
||||
torture_comment(tctx, "skipping valuename '%s' including ',' character against Samba3\n",
|
||||
values[i]);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user