mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
s4 torture: Warn on NOT_IMPLEMENTED in addition to NOT_SUPPORTED for RAW-QFILEINFO
Signed-off-by: Tim Prouty <tprouty@samba.org>
This commit is contained in:
parent
2a0340baa3
commit
7e49a58ab9
@ -278,8 +278,10 @@ static bool torture_raw_qfileinfo_internals(struct torture_context *torture,
|
||||
count++;
|
||||
}
|
||||
if (!levels[i].only_paths &&
|
||||
(NT_STATUS_EQUAL(levels[i].fnum_status,
|
||||
NT_STATUS_NOT_SUPPORTED) ||
|
||||
NT_STATUS_EQUAL(levels[i].fnum_status,
|
||||
NT_STATUS_NOT_SUPPORTED)) {
|
||||
NT_STATUS_NOT_IMPLEMENTED))) {
|
||||
torture_warning(torture, "fnum level %s %s",
|
||||
levels[i].name,
|
||||
nt_errstr(levels[i].fnum_status));
|
||||
@ -293,8 +295,10 @@ static bool torture_raw_qfileinfo_internals(struct torture_context *torture,
|
||||
}
|
||||
} else {
|
||||
if (!levels[i].only_paths &&
|
||||
(NT_STATUS_EQUAL(levels[i].fnum_status,
|
||||
NT_STATUS_NOT_SUPPORTED) ||
|
||||
NT_STATUS_EQUAL(levels[i].fnum_status,
|
||||
NT_STATUS_NOT_SUPPORTED)) {
|
||||
NT_STATUS_NOT_IMPLEMENTED))) {
|
||||
torture_warning(torture, "fnum level %s %s",
|
||||
levels[i].name,
|
||||
nt_errstr(levels[i].fnum_status));
|
||||
@ -302,8 +306,10 @@ static bool torture_raw_qfileinfo_internals(struct torture_context *torture,
|
||||
}
|
||||
|
||||
if (!levels[i].only_handles &&
|
||||
(NT_STATUS_EQUAL(levels[i].fname_status,
|
||||
NT_STATUS_NOT_SUPPORTED) ||
|
||||
NT_STATUS_EQUAL(levels[i].fname_status,
|
||||
NT_STATUS_NOT_SUPPORTED)) {
|
||||
NT_STATUS_NOT_IMPLEMENTED))) {
|
||||
torture_warning(torture, "fname level %s %s",
|
||||
levels[i].name,
|
||||
nt_errstr(levels[i].fname_status));
|
||||
|
Loading…
Reference in New Issue
Block a user