diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-10-31 16:44:42 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:43:51 +0100 |
commit | 1f87eb38fdb76d73ea1dd045d8555a662bf0c77b (patch) | |
tree | 947eb88e986543da3a81dcb86980822e001077fb /source4/pidl/tests/ndr_represent.pl | |
parent | 7dee06709e01118dc3b56e79b1050de9bace92a3 (diff) | |
download | samba-1f87eb38fdb76d73ea1dd045d8555a662bf0c77b.tar.gz samba-1f87eb38fdb76d73ea1dd045d8555a662bf0c77b.tar.bz2 samba-1f87eb38fdb76d73ea1dd045d8555a662bf0c77b.zip |
r25768: pidl: NT_STATUS_IS_ERR() is NOT the same as !NT_STATUS_IS_OK()
Everything but success should be handled as error in the tests.
metze
(This used to be commit cadb1cc743a19fc16e61f8246b1e8771c806caea)
Diffstat (limited to 'source4/pidl/tests/ndr_represent.pl')
-rwxr-xr-x | source4/pidl/tests/ndr_represent.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/pidl/tests/ndr_represent.pl b/source4/pidl/tests/ndr_represent.pl index 84feeeb9ff..b5ee312668 100755 --- a/source4/pidl/tests/ndr_represent.pl +++ b/source4/pidl/tests/ndr_represent.pl @@ -18,7 +18,7 @@ test_samba4_ndr('represent_as-simple', struct ndr_pull *ndr = ndr_pull_init_blob(&in_blob, NULL); struct bla r; - if (NT_STATUS_IS_ERR(ndr_pull_bla(ndr, NDR_SCALARS|NDR_BUFFERS, &r))) + if (!NT_STATUS_IS_OK(ndr_pull_bla(ndr, NDR_SCALARS|NDR_BUFFERS, &r))) return 1; if (r.in.x != 13) @@ -51,7 +51,7 @@ test_samba4_ndr('transmit_as-simple', struct ndr_pull *ndr = ndr_pull_init_blob(&in_blob, NULL); struct bla r; - if (NT_STATUS_IS_ERR(ndr_pull_bla(ndr, NDR_SCALARS|NDR_BUFFERS, &r))) + if (!NT_STATUS_IS_OK(ndr_pull_bla(ndr, NDR_SCALARS|NDR_BUFFERS, &r))) return 1; if (r.in.x != 13) |